1.pom文件引入jar包
<!-- https://mvnrepository.com/artifact/org.json/json -->
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20160810</version>
</dependency>
2.添加工具类方法
public String Json2Csv(String jsonstr) throws JSONException {
JSONArray jsonArray = new JSONArray(json);
String csv =CDL.toString(jsonArray);
return csv;
}
3.调用方法 生成csv
FileUtils.writeStringToFile(new File("D:/1.data/demo.csv"), Json2Csv(jsonstr));
示例
image.png
导出后
image.png
网友评论