JSON转换为CSV

        <dependency>
            <groupId>org.json</groupId>
            <artifactId>json</artifactId>
            <version>20090211</version>
        </dependency>
  public String Json2Csv(String json) throws  JSONException {
        JSONArray jsonArray = new JSONArray(json);
        String csv = CDL.toString(jsonArray);
        return csv;
    }

posted @ 2021-11-12 13:36  天天代码码天天  阅读(10)  评论(0编辑  收藏  举报  来源