JSon Gson 자바 해석 json
1474 단어 자바
새로운 하루 가 시작 되 었 습 니 다.어제 잠 을 잘 못 잤 습 니 다.먼저 이것 을 다 쓰 세 요.
다음은 제 가 테스트 를 해 봤 는데 요.
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
/**
* json
*
* @author yangliang
* @version 1.0
* @created 2011-12-2 09:38:11
* @history
* @see
*/
public class Test3 {
public static void main(String[] args) {
String json = "{'num':11,'org':{'orgId':'orgId','orgName':'orgName'},'biz':" +
"[{'appcode':55,'subscode':'subscode0'},{'appcode':66,'subscode':'subscode1'}]}";
JSONObject jo = JSONObject.fromObject(json);
System.out.println(jo.get("num"));
JSONObject orgJson= jo.getJSONObject("org");
System.out.println(orgJson);
System.out.println(orgJson.get("orgId"));
JSONArray bizJson= jo.getJSONArray("biz");
System.out.println(bizJson.getJSONObject(0).get("appcode"));
}
}
//
11
{"orgId":"orgId","orgName":"orgName"}
orgId
55
제 이 슨 데 이 터 를 어떻게 해석 하 는 지 에 대해 서 는 제 다른 글 을 참고 하 세 요.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.