我已经按特定顺序设置了 HashMap,但它以奇怪的顺序迭代!
请考虑以下代码:
HashMap<String, String> map = new HashMap<String, String>();
map.put("ID", "1");
map.put("Name", "the name");
map.put("Sort", "the sort");
map.put("Type", "the type");
...
for (String key : map.keySet()) {
System.out.println(key + ": " + map.get(key));
}
结果:
Name: the name
Sort: the sort
Type: the type
ID: 1
我需要迭代它以便我放置条目。任何帮助将不胜感激。