将Java对象列表写入JSON文件

时间:2013-06-29 12:39:13

标签: java json

我正在尝试使用以下代码将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();
     }

我能够在文件中编写普通对象,但不能编写数组对象列表。

0 个答案:

没有答案