主页 > 编程资料 > Android >
发布时间:2016-11-21 作者:Kami 阅读:273次
import org.json.JSONObject;
import org.json.JSONArray;
//简单的json 
try{
    String jsonString = ""; // 假设json是这样的--->{"msg":"HelloWorld"}
    JSONObject jsonObject = new JSONObject(jsonString); 
    String msg = jsonObject.getString("msg"); //HelloWorld
}catch(Exception e){
    //异常处理    
}
//复杂的json
try{
    String jsonString = ""; // 假设一个复杂的json是这样的--->{"data":[{"object":"1"},{"object":"2"}...]}
     JSONObject jsonObject = new JSONObject(jsonString);
    JSONArray jsonArray = jsonObject.getJSONArray("data");// 得到这部分内容--->[{"object1":"1"}...]
    
    for(int i=0;i<jsonArray.length();i++){
        JSONObject objectN = jsonArray.getJSONObject(i);
        String value = objectN.getString("object"); 
    }
}catch(Exception e){
    //异常处理
}



文章由爱资料原创本文地址:https://www.apizl.com/archives/view-132919-1.html,转载请以链接形式标明本文地址!
关键字词: