首頁  >  文章  >  Java  >  如何在Java中將JSON數組轉換為CSV?

如何在Java中將JSON數組轉換為CSV?

WBOY
WBOY轉載
2023-08-21 20:27:361689瀏覽

如何在Java中將JSON數組轉換為CSV?

JSON可以用作資料交換格式,它是輕量級的與語言無關。一個JSONArray可以解析文字字串以產生類似於向量的對象,並支援java.util.##List#介面。我們可以使用org.json.CDL類別將JSON數組轉換為CSV格式,它提供了一個靜態方法toString(),用於將JSONArray轉換為逗號分隔的文字。我們需要匯入org.apache.commons.io.FileUtils套件,以使用writeStringToFile()方法將資料儲存在CSV檔案中。

語法

public static java.lang.String toString(JSONArray ja) throws JSONException

In the below example, we can convert a JSON Array to CSV format.

Example

import java.io.File;
import org.apache.commons.io.FileUtils;
import org.json.*;
public class ConvertJsonToCSVTest {
   public static void main(String[] args) throws JSONException {
      String jsonArrayString = "{\"fileName\": [{\"first name\": \"Ravi\",\"last name\": \"Chandra\",\"location\": \"Bangalore\"}]}";
      JSONObject output;
      try {
         output = new JSONObject(jsonArrayString);
         JSONArray docs = output.getJSONArray("fileName");
         File file = new File("EmpDetails.csv");
         String csv = CDL.toString(docs);
         FileUtils.writeStringToFile(file, csv);
         System.out.println("Data has been Sucessfully Writeen to "+ file);
         System.out.println(csv);
      }
      catch(Exception e) {
         e.printStackTrace();
      }
   }
}

輸出

Data has been Sucessfully Writeen to EmpDetails.csv
last name,first name,location
Chandra,Ravi,Bangalore

以上是如何在Java中將JSON數組轉換為CSV?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除