Android中的JSONObject和JSONArray解析json数据
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-05 09:59:10 浏览: 评论:0
今天介绍一下关于json数据解析,我们使用Android中的JSONObject和JSONArray解析json数据,有android开发的朋友可以参考一下.
- String strJson = "{"students":[{"name":"Jack","age":12}, {"name":"Vista","age":23}, {"name":"Kaka","age":22}, {"name":"Hony","age":31}]}";
- try {
- JSONObject jo = new JSONObject(strJson);
- JSONArray jsonArray = (JSONArray) jo.get("students");
- for (int i = 0; i < jsonArray.length(); ++i) {
- JSONObject o = (JSONObject) jsonArray.get(i);
- System.out.println("name:" + o.getString("name") + "," + "age:"
- + o.getInt("age"));
- }
- } catch (JSONException e) {
- e.printStackTrace();
- }
- 2.使用gson中的JsonReader解析json数据
- try {
- String string = "{"class":1, "students":[{"name":"jack", "age":21},{"name":"kaka", "age":21},{"name":"lucy", "age":21}]}";
- StringReader sr = new StringReader(string);
- JsonReader jr = new JsonReader(sr);
- jr.beginObject();
- if (jr.nextName().contains("class")) {
- System.out.println("班级: " + jr.nextString());
- if (jr.nextName().equals("students")) {
- jr.beginArray();
- while (jr.hasNext()) {
- jr.beginObject();
- if (jr.nextName().equals("name"))
- System.out.print("姓名:" + jr.nextString());
- if (jr.nextName().equals("age")) {
- System.out.println(" , 年龄:" + jr.nextInt());
- }
- jr.endObject();
- }
- jr.endArray();
- }
- }
- jr.endObject();
- } catch (FileNotFoundException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- } catch (IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
Json解析库gson:http://code.google.com/p/google-gson/
Tags: Android JSONObject JSONArray
- 上一篇:php配置memcache缓存方法
- 下一篇:php解析JSON 数据
相关文章
- ·js 和 php 判断是否是 android 设备(2014-05-13)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)