我正在尝试使用json.simple库中的JSONArray对象写入json文件。我遇到的问题是文件格式如下所示:
[{"artist_name":"test1","year":0,"album_name":null,"song_name":"test1"},{"artist_name":"test1","year":0,"album_name":null,"song_name":"test1"}]
当我希望这样的格式出现时:
[{"artist_name":"test1",
"year":0,
"album_name":null,
"song_name":"test1"},
{"artist_name":"test1",
"year":0,
"album_name":null,
"song_name":"test1"}]
这是我的代码现在的样子:
FileWriter filewriter = new FileWriter("filesystem.json");
JSONObject newo = new JSONObject();
newo.put("song_name", "test1");
newo.put("artist_name", "test1");
newo.put("album_name", null);
newo.put("year", 0);
arr.add(newo);
filewriter.write(arr.toJSONString());
filewriter.flush();
filewriter.close();
答案 0 :(得分:1)
您不需要在代码中添加任何内容。当您从某个地方检索Json时,Json总是会看起来像这样。如果您希望以描述的方式查看它,请尝试使用google json查看器,这可能会有所帮助。