JAVA JSON转csv,xls两行代码带回家

阅读更多

  org.json
  json
  20090211





public static String Json2Csv(String json) throws JSONException {
    JSONArray jsonArray = new JSONArray("["+json+","+json+"]");
    String csv = CDL.toString(jsonArray);
    return csv;
}

FileUtils.writeStringToFile(new File("C:/csv2.xls"), Json2Csv(data));



public static boolean isJsonArray(String content) {
    if(StringUtils.isBlank(content))
        return false;
    StringUtils.isEmpty(content);
    try {
        JSONArray jsonStr = JSONArray.parseArray(content);
        return true;
    } catch (Exception e) {
        return false;
    }
}
 嗯,json数据需转为jsonArray就可以转换为想xls,csv
  • 核保校对软件.tar.gz (4.8 KB)
  • 下载次数: 4

你可能感兴趣的:(xls,json,csv)