Math tool: round to a given integer
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.MathTool; public class MathToolExample { public static void main(String[] args) throws Exception { Velocity.init(); Template t = Velocity.getTemplate("./src/mathTool.vm"); VelocityContext ctx = new VelocityContext(); ctx.put("math", new MathTool()); ctx.put("aNumber", new Double(5.5)); Writer writer = new StringWriter(); t.merge(ctx, writer); System.out.println(writer); } } ------------------------------------------------------------------------------------- 4.45678 rounded to 3 places is $math.roundTo(3, "4.45678")