在Apache Velocity中为变量生成提供文本文件

时间:2017-02-17 12:32:02

标签: java code-generation velocity

我试图了解Apache Velocity的工作原理。我看到了一些关于它是如何工作的例子,将文件作为模板并将变量生成提供给上下文对象,如:

    VelocityEngine ve = new VelocityEngine();
    ve.init();
    /*  next, get the Template  */
    Template t = ve.getTemplate( "helloworld.vm" );
    /*  create a context and add data */
    VelocityContext context = new VelocityContext();
    context.put("name", "World");

有没有办法给文件填充这些变量生成输入/数据?

0 个答案:

没有答案