我正在尝试使用以下代码写入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个不同的配置文件。且配置文件应命名为配置文件,并在配置文件后面加上相应的编号。

最佳答案

当您执行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);

10-04 13:44