Velocity の 3 番目のアプリケーション例 - コレクション/配列の走査
//2.Create a Context object VelocityContext context = newVelocityContext(); //3.Add your data objects to this context context.put("list",Arrays.asList("第一个","第二个","第三个","第四个")); //4.Choose a template Template template =Velocity.getTemplate("list.vm"); //5.Merge the template and your data toproduce the output StringWriter sw = new StringWriter(); template.merge(context, sw); sw.flush(); System.out.println(sw.toString());
template
#foreach($elementin $list) $element #end ====================== #foreach($ein $list) $e #end
上記は、Velocity の 3 番目のアプリケーション例 - コレクション/配列のコンテンツの走査です。 PHP 中国語 Web サイト (www .php.cn)!