本文介绍了Freemarker和hashmap。我如何获得重要价值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个哈希映射如下
HashMap<String, String> map = new HashMap<String, String>();
map.put("one", "1");
map.put("two", "2");
map.put("three", "3");
Map root = new HashMap();
root.put("hello", map);
我的Freemarker模板是:
My Freemarker template is:
<html><body>
<#list hello?keys as key>
${key} = ${hello[key]}
</#list>
</body></html>
目标是在我生成的HTML中显示键值对。请帮助我做到这一点。
The goal is to display key-value pair in the HTML that I'm generating. Please help me to do it. Thanks!
推荐答案
代码:
Code:
HashMap<String, String> test1 = new HashMap<String, String>();
Map root = new HashMap();
test1.put("one", "1");
test1.put("two", "2");
test1.put("three", "3");
root.put("hello", test1);
Configuration cfg = new Configuration(); // Create configuration
Template template = cfg.getTemplate("test.ftl"); // Filename of your template
StringWriter sw = new StringWriter(); // So you can use the output as String
template.process(root, sw); // process the template to output
System.out.println(sw); // eg. output your result
模板:
Template:
<body>
<#list hello?keys as key>
${key} = ${hello[key]}
</#list>
</body>
输出:
Output:
<body>
two = 2
one = 1
three = 3
</body>
这篇关于Freemarker和hashmap。我如何获得重要价值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!