我正在尝试使用以下代码写入json文件:
JSONObject obj = new JSONObject();
JSONArray dlist = new JSONArray();
JSONObject data = new JSONObject();
//Data
data.put("path", gamePath);
data.put("lastprofile", profileList.getSelectedValue());
dlist.add(data);
obj.put("data", dlist);
//Profiles
JSONArray profileList = new JSONArray(); //profiles list
JSONObject profileListObj = new JSONObject(); //profiles
JSONArray profileDataList = new JSONArray(); //profile data list
JSONObject profileData = new JSONObject(); //profile data
//We now have to cycle every profile and create the data, then add it to the list.
for(int i=profiles.size()-1; i>=0; i--) {
Profile p = profiles.get(i);
profileData.put("name", p.name);
profileData.put("mods", p.mods.toString());
System.out.println(p.name + "..." + p.mods.toString());
profileDataList.add(profileData);
System.out.println("list.." + profileDataList.toString());
profileListObj.put("profile"+i, profileDataList);
//obj.put("profile"+i, profileDataList);
//profileList.add(profileListObj);
//profileListObj.clear();
//profileDataList.clear();
//profileData.clear();
}
//profileList.add(profileListObj);
obj.put("profiles", profileDataList);
问题是什么,你可以看到我注释掉的一些注释掉的线条。这是整个数组最终会保存为最后一个对象配置文件。
我想要的是:
profiles
-profile1
--data
--data
-profile2
--data
--data etc,
以下是使用上面的示例代码生成的内容。
{
"data" : [{
"path" : "tempPath",
"lastprofile" : "Profile1"
}
],
"profiles" : [{
"name" : "Profile1", //This one is correct
"mods" : "[base, mcconfig, mcconfig-startbonus]"
}, {
"name" : "Profile1", //This one should be profile2
"mods" : "[base, mcconfig, mcconfig-startbonus]" //different mods...
}, {
"name" : "Profile1", //this one should be profile3
"mods" : "[base, mcconfig, mcconfig-startbonus]" //different mods...
}, {
"name" : "Profile1",
"mods" : "[base, mcconfig, mcconfig-startbonus]"
}, {
"name" : "Profile1",
"mods" : "[base, mcconfig, mcconfig-startbonus]"
}
]
}
我已经修改了多条注释掉的行,获得了所有数据的正确性,只是没有在配置文件中组织。我试图让它尽可能干净,因此它很有条理。
我得出的结论是,我无法将一些内容放入具有相同密钥的profileData中。因此,它将第一个输入重新添加到profileDataList,然后继续每个循环。
更多信息:每个profileData名称和mod都有不同的字符串。有5种不同的配置文件。并且配置文件应该命名为配置文件,其后面有相应的编号,在配置文件内。
答案 0 :(得分:1)
执行profileData.put("name", p.name);
时,您将覆盖同一个对象,因此在最后,您将拥有一个包含3个对同一对象的引用的数组。要修复它,请在循环内创建一个新实例(请参阅注释):
for(int i=profiles.size()-1; i>=0; i--) {
Profile p = profiles.get(i);
profileData = new JsonObject(); // <- create a new object in each iteration
profileData.put("name", p.name);
profileData.put("mods", p.mods.toString());
System.out.println(p.name + "..." + p.mods.toString());
profileDataList.add(profileData);
System.out.println("list.." + profileDataList.toString());
profileListObj.put("profile"+i, profileDataList); // Is this really needed?
}
//profileList.add(profileListObj);
obj.put("profiles", profileDataList);