이 글은 주로 Java에서 2차원 배열을 JSON으로 변환하는 방법을 소개하며, Java 배열 탐색 및 json 형식 데이터 구성과 관련된 조작 기술을 포함하여 도움이 필요한 친구들이 참고할 수 있습니다.
이 글의 예는 JSON 변환에 대해 설명합니다. Java 메소드에서 2차원 배열을 JSON으로 변환합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 사항은 다음과 같습니다.
package Tsets; public class erweiTojson { public static void main(String[] args) { String[][] blogList = { {"2008/07/07", "NetBeans New and Cool", "Tim Boudreau"}, {"2008/07/07", "NetBeans Mobility", "Ada Li"}, {"2008/07/07", "Creating Web 2.0 Rich Internet Applications", "Michael Li"}, {"2008/07/08", "AJAX and JSF", "Ada Li"}, {"2008/07/09", "Ruby on Rails in the Enterprise", "Liang Ye"}, {"2008/07/09", "Beans Binding and the Swing Application Framework", "Joey Shen"} }; StringBuffer sb = new StringBuffer(); boolean first = true; sb.append("["); for (int i = 0; i < blogList.length; i++) { String[] blogItem = blogList[i]; if (!first) { sb.append(","); } sb.append("{"); sb.append("postdate: '" + blogItem[0] + "', "); sb.append("title: '" + blogItem[1] + "', "); sb.append("author: '" + blogItem[2] + "' "); sb.append("}"); first = false; } sb.append("]"); System.out.println(sb.toString()); } }
실행 결과:
코드 복사 코드는 다음과 같습니다.
[{postdate: '2008/07/07', title: 'NetBeans New and Cool', author: 'Tim Boudreau' },{postdate: '2008/07/07', title: 'NetBeans Mobility', author: 'Ada Li' },{postdate: '2008/07/07', title: 'Creating Web 2.0 Rich Internet Applications', author: 'Michael Li' },{postdate: '2008/07/08', title: 'AJAX and JSF', author: 'Ada Li' },{postdate: '2008/07/09', title: 'Ruby on Rails in the Enterprise', author: 'Liang Ye' },{postdate: '2008/07/09', title: 'Beans Binding and the Swing Application Framework', author: 'Joey Shen' }]
위 내용은 Java 2차원 배열을 json으로 변환하는 구현 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!