JAVA 에서 JSON 을 사용 합 니 다.
import org.json.JSONException;
import org.json.JSONObject;
import org.json.JSONArray;
public class test {
// JSONObject
private static JSONObject createJSONObject() throws JSONException {
JSONObject jsonObject = new JSONObject();
jsonObject.put("ak", "av");
jsonObject.put("bk", "bv");
jsonObject.put("ck", "cv");
return jsonObject;
}
// JSONObject
private static JSONArray createJSONarray() throws JSONException {
JSONArray jsonArray = new JSONArray();
jsonArray.put("a");
jsonArray.put("b");
jsonArray.put("c");
jsonArray.put(1);//
jsonArray.put(true);// boolean
return jsonArray;
}
private static void print(String string) {
System.out.println(string);
System.out.println("========== ==========");
System.out.println();
}
public static void main(String args[]) {
try {
System.out.println(" JSONObject");
JSONObject testObject = createJSONObject();
print(testObject.toString());
System.out.println(" JSONArray");
JSONArray testArray = createJSONarray();
print(testArray.toString());
System.out.println(" , ");
testObject.put("ak", "ak");
print(testObject.toString());
System.out.println(" , ; null , null ");
testArray.put("a");
testArray.put(null);
print(testArray.toString());
System.out.println(" null , ");
testObject.put("bk", null);
print(testObject.toString());
System.out.println("JSONArray JSONObject");
testArray.put(createJSONObject());
print(testArray.toString());
System.out.println("JSONObject JSONArray");
testObject.put("JSONArray", createJSONarray());
print(testObject.toString());
System.out.println("JSONObject JSONArray ");
testObject.put("JSONArray", testArray);
print(testObject.toString());
System.out.println(" JSONObject JSONArray");
System.out.println(" JSONObject :" + testObject.toString());
System.out.println(" key ck :" + testObject.getString("ck"));
System.out.println(" key JSONArray JSONArray :"
+ testObject.getJSONArray("JSONArray").toString());
print(" key JSONArray JSONArray JSONObject key bk :"
+ testObject.getJSONArray("JSONArray").getJSONObject(7)
.getString("bk"));
} catch (Exception e) {
System.out.println(e.toString());
}
}
}
프로그램 실행 결과:
JSonobject{"ck":"cv","bk":"bv","ak":"av":"av"}========================================JSSONarray["a","b","c",1,true)=========================================키 값 이 원래 값 을 덮어 쓰 는{"ck":"cv"","cv"cv","bk":"bv",""bv","""","ak""","ak"ak""""""}===========모든 악의 구분자==============원소 가 같 아서 원래 의 값 을 덮어 쓰 지 않 습 니 다.값 이 null 일 때 도 추가 할 수 있 습 니 다.null 에 따따따따따따따따옴["a","b","c",1,tru,"a","a",null]====================키 가 같 고 값 이 null 일 때 이 키 값 을{"ck":"cv","cv","ak":"ak"============================================================================================,1,true,"a",null,{"ck":"cv","bk":"bv","ak":"av"}============모든 악의 구분자================================JSSONobject 에 JSSONAarry{"ck":"cv","JSSONarray":["a","b","c",1,true],"ak":"ak":"ak"}========================================================================================rray":["a","b","c",1,true,"a",null,{"ck":"cv","bk":"bv","ak":"av"},"ak":"ak"}===========모든 악의 구분자==============================================================================JSonobject 와 JSonobject 를 처리 합 니 다:["a","b","c","c",1,tru,"a","a",null,null,{"ck","cv","bv",","ak","av":"av":"av"}],"ak"ak":"ak"ak":"ak""JSONarray 의 JSONarray 대상:["a","b","c",1,true,"a",null,{"ck":"cv","bk":"bv","ak":"av"}]키 가 JSONarray 인 JSONarray 대상 중 마지막 JSONobject 대상 의 키 가 bk 인 값 가 져 오기:bv==============모든 악의 구분자======================
JSON 온라인 변환 도구:http://www.bejson.com/JSON대상 과 다른 대상 의 상호 전환:http://www.cnblogs.com/undead/archive/2012/07/18/2594900.html
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.