JSon Gson 자바 해석 json

1474 단어 자바
오늘 제 이 슨 을 해석 할 때 사용 하 던 gs on 을 찾 아 봤 는데 제 이 슨 을 해석 할 때 gs on 이 불편 해서 제 이 슨 으로 시험 해 봤 는데 정말 그 랬 습 니 다.내일 아침 에 계속 쓰 세 요.지금 퇴근 하 세 요.
   새로운 하루 가 시작 되 었 습 니 다.어제 잠 을 잘 못 잤 습 니 다.먼저 이것 을 다 쓰 세 요.
  다음은 제 가 테스트 를 해 봤 는데 요.
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

 
 제 이 슨 데 이 터 를 어떻게 해석 하 는 지 에 대해 서 는 제 다른 글 을 참고 하 세 요.

좋은 웹페이지 즐겨찾기