博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android 读取json数据(遍历JSONObject和JSONArray)(转)
阅读量:6495 次
发布时间:2019-06-24

本文共 831 字,大约阅读时间需要 2 分钟。

  • public String getJson(){  
  •         String jsonString = "{\"FLAG\":\"flag\",\"MESSAGE\":\"SUCCESS\",\"name\":[{\"name\":\"jack\"},{\"name\":\"lucy\"}]}";//json字符串  
  •         try {  
  •             JSONObject result = new JSONObject(jsonstring);//转换为JSONObject  
  •             int num = result.length();  
  •             JSONArray nameList = result.getJSONArray("name");//获取JSONArray  
  •             int length = nameList.length();  
  •             String aa = "";  
  •             for(int i = 0; i < length; i++){
    //遍历JSONArray  
  •                 Log.d("debugTest",Integer.toString(i));  
  •                 JSONObject oj = nameList.getJSONObject(i);  
  •                 aa = aa + oj.getString("name")+"|";  
  •                   
  •             }  
  •             Iterator<?> it = result.keys();  
  •             String aa2 = "";  
  •             String bb2 = null;  
  •             while(it.hasNext()){
    //遍历JSONObject  
  •                 bb2 = (String) it.next().toString();  
  •                 aa2 = aa2 + result.getString(bb2);  
  •                   
  •             }  
  •             return aa;  
  •         } catch (JSONException e) {  
  •             throw new RuntimeException(e);  
  •         }  
  •     }  
 

 

原文: http://zhaojianping.blog.51cto.com/725123/629526

转载地址:http://djcyo.baihongyu.com/

你可能感兴趣的文章
Android Fragment的使用
查看>>
mysql半同步复制实现
查看>>
沙朗javascript总结一下(一)---基础知识
查看>>
js深入研究之函数内的函数
查看>>
LeetCode:4_Median of Two Sorted Arrays | 求两个排序数组的中位数 | Hard
查看>>
python之commands模块
查看>>
android应用开发--------------看RadioGroup源代码,写相似单选选项卡的集成控件(如底部导航,tab等等)...
查看>>
LeetCode - Binary Tree Level Order Traversal
查看>>
FTP协议完全详解
查看>>
【C语言天天练(十五)】字符串输入函数fgets、gets和scanf
查看>>
【环境配置】配置sdk
查看>>
accept()
查看>>
USB 2.0 Hub IP Core
查看>>
USB 2.0 OTG IP Core
查看>>
解读浮动闭合最佳方案:clearfix
查看>>
Charles使用
查看>>
Python GUI编程(Tkinter) windows界面开发
查看>>
P(Y|X) 和 P(X,Y)
查看>>
dynamic关键字的使用
查看>>
iOS 音乐播放器之锁屏效果+歌词解析
查看>>