特定の順序で 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
エントリを配置するために、それを繰り返す必要があります。どんな助けでも大歓迎です。