我正在尝试使用以下代码将 Java 对象列表写入 JSON 文件。
JsonBO jsonBo = new JsonBO();
jsonBo.setCDataSet(SampleBOList);
JsonConfig jsonConfig = new JsonConfig();
JSON json = JSONSerializer.toJSON(jsonBo, jsonConfig);
try {
File file = new File("test.json");
FileUtils.writeStringToFile(file, json.toString(), "UTF-8");
}
catch (final IOException exp)
{
System.out.println("Unable to write the JSON file in the given path..");
exp.printStackTrace();
}
我可以在文件中写入普通对象,但不能在数组对象列表中写入。