JSON的使用

服务器端:

Person person = new Person(  ,    ,);
JSONObject obj = new JSONObject();
obj.put("person", person);

Android 客户端:

JSONObject jsonObject = new JSONObject(jsonString);
			JSONObject personObject = jsonObject.getJSONObject("person");
			person.setId(personObject.getInt("id"));
			person.setName(personObject.getString("name"));




JSON的使用,布布扣,bubuko.com

JSON的使用

上一篇:指尖上的电商---(9).net开发Solr中的Facet功能


下一篇:POJ 3164 Command Network 最小树形图-朱刘算法裸题