我正在尝试使用以下代码将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();
}
我能够在文件中编写普通对象,但不能编写数组对象列表。