我试图了解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");
有没有办法给文件填充这些变量生成输入/数据?