android > JSon 使用

		String json = "{name='json',age:33}";
		jsonObject = new JSONObject(json);
		System.out.println(jsonObject.get("name"));
		System.out.println(jsonObject.get("age"));

output:

json

33

猜你喜欢

转载自mft.iteye.com/blog/1828936
今日推荐