Home  >  Article  >  Backend Development  >  The fourth application example of velocity---Traversing Map collection

The fourth application example of velocity---Traversing Map collection

黄舟
黄舟Original
2017-01-17 10:51:192053browse

velocityThe fourth application example---traversing the Map collection

//2 Create a Context object
VelocityContext context = newVelocityContext();
//3 Add you data objects to this context
Map<String,String> map = newHashMap<String,String>();
map.put("key1","value1");
map.put("key2","value2");
map.put("key3","value3");
map.put("key4","value4");
context.put("map", map);
//4 Choose a template
Template template =Velocity.getTemplate("map.vm");
//5 Merge the template and you data toproduce the output
StringWriter sw = new StringWriter();
template.merge(context, sw);
sw.flush();
System.out.println(sw.toString());



template

#foreach($keyin $map.keySet())
$key:$map.get($key)
#end
========

The above is For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn