JSON은 데이터 교환 형식으로 사용할 수 있으며 가벼우며 언어에 구애받지 않습니다. JSONArray는 텍스트 문자열을 구문 분석하여 Vector와 유사한 객체를 생성할 수 있으며 java.util.List 인터페이스를 지원합니다. JSONArray를 쉼표로 구분된 텍스트로 변환하기 위한 정적 메서드 toString()을 제공하는 org.json.CDL 클래스를 사용하여 JSON 배열을 CSV 형식으로 변환할 수 있습니다. writeStringToFile() 메서드를 사용하여 CSV 파일에 데이터를 저장하려면 org.apache.commons.io.FileUtils 패키지를 가져와야 합니다.
public static java.lang.String toString(JSONArray ja) throws JSONException
아래 예에서는 JSON 배열을 CSV 형식으로 변환할 수 있습니다.
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!