web-dev-qa-db-fra.com

Freemarker et hashmap. Comment puis-je obtenir une valeur-clé

J'ai une carte de hachage comme ci-dessous

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);

Mon modèle Freemarker est:

<html><body>
    <#list hello?keys as key> 
        ${key} = ${hello[key]} 
    </#list> 
</body></html>

L'objectif est d'afficher la paire clé-valeur dans le code HTML que je génère. S'il vous plaît aidez-moi à le faire. Merci!

16
Damien-Amen

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

Modèle:

<body>
<#list hello?keys as key> 
    ${key} = ${hello[key]} 
</#list> 
</body>

Sortie:

<body>
    two = 2 
    one = 1 
    three = 3 
</body>
41
ollo

Depuis 2.3.25, vous pouvez faire ceci:

<body>
<#list hello as key, value> 
    ${key} = ${value} 
</#list> 
</body>
15
ddekany

Utilisez une carte qui préserve l'ordre d'insertion des paires clé-valeur: LinkedHashMap

3
ruurd

Avant 2.3.25, dans le cas de clés contenant des objets, vous pouvez essayer d’utiliser 

<#assign key_list = map?keys/>
<#assign value_list = map?values/>
<#list key_list as key>
  ...
  <#assign seq_index = key_list?seq_index_of(key) />
  <#assign key_value = value_list[seq_index]/>
  ...
     //Use the ${key_value}
  ...
</#list>
0
giacomolm