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
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中文網其他相關文章!