码迷,mamicode.com
首页 > Web开发 > 详细

JSON的使用

时间:2014-05-26 03:45:00      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:android   style   class   blog   c   code   

服务器端:

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的使用

标签:android   style   class   blog   c   code   

原文地址:http://blog.csdn.net/xiatian6032/article/details/26746335

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!