在我的 Java 类中,我有一个属性:
private HashMap<String, Integer> keywordFrequencies;
我需要序列化/反序列化相关类的对象。
SimpleXML 可以表示这种类型的 Java 对象吗?XML 会是什么样子?
我的 XML 是这样的:
<keywordFrequencies>
<keyword key="Osborne">1</keyword>
<keyword key="budget">3</keyword>
</keywordFrequencies>
目前要反序列化的代码是一种通用方法:
public static void printHashMap(HashMap<String, Integer> hm) {
Set s = hm.entrySet();
Iterator i = s.iterator();
int j = 0;
// Print the index.
while(i.hasNext()) {
Map.Entry m = (Map.Entry) i.next();
System.out.println("No=" + (j + 1) + ", Key=" + m.getKey() + ", Freq=" + m.getValue());
j++;
}
}
Java类中的属性是:
@ElementMap(entry="keywordFrequencies", key="key", attribute=true, inline=true)
private HashMap<String, Integer> keywordFrequencies;
我在哪里调用将哈希图打印为的方法:
HashMap_Utils.printHashMap(requestOMDM.getKeywordFrequencies());