Use macro to wrap HTML tags : Macro « Velocity « Java






Use macro to wrap HTML tags


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.IteratorTool;

public class VMDemo {

  public static void main(String[] args) throws Exception {
    Velocity.init();

    Template t = Velocity.getTemplate("./src/demo.vm");

    VelocityContext ctx = new VelocityContext();
    ctx.put("var", new IteratorTool());

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

    System.out.println(writer);
  }
}       
-------------------------------------------------------------------------------------
#macro( d )
<tr><td></td></tr>
#end

#d()
           
       








velocity-Macro-Simple.zip( 1,873 k)

Related examples in the same category

1.Define and use Macro
2.Velocity Macro With Parameters