Reference variable by name : Variables « Velocity « Java






Reference variable by name


import java.io.StringWriter;
import java.io.Writer;

import org.apache.velocity.Template;
import org.apache.velocity.VelocityContext;
import org.apache.velocity.app.Velocity;
import org.apache.velocity.tools.generic.RenderTool;

public class VMDemo {

  public static void main(String[] args) throws Exception {
    Velocity.init();
    Template t = Velocity.getTemplate("./src/VMDemo.vm");

    VelocityContext ctx = new VelocityContext();

    Writer writer = new StringWriter();
    t.merge(ctx, writer);

    System.out.println(writer);
  }
}
-------------------------------------------------------------------------------------
#set ($a = "12.99")
#set ($b = "13.99")

$a = $a
$b = $b

           
       








velocity-VariableName.zip( 877 k)

Related examples in the same category

1.Velocity Variable Noise Reference
2.Velocity Variable Quite Reference
3.Set variable value
4.Define and use variable in Velocity
5.Velocity Variable Add
6.Pass variable into Velocity
7.Use a variable defined in Velocity