码迷,mamicode.com
首页 > 编程语言 > 详细

java 解析json

时间:2014-11-27 12:37:43      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   使用   sp   

例《解析评论》

//post方式请求

String url=“http://product.dangdang.com/comment/comment.php?product_id=60569472&datatype=1&page=1&filtertype=1&sysfilter=1&sorttype=1”;

//请求后的json格式

bubuko.com,布布扣

HttpPost httpPost=new HttpPost(url);

HttpClient defaultHttpClient= new DefaultHttpClient();

HttpResponse response = defaultHttpClient.execute(httpPost);

//请求状态吗
int StatusCode=response.getStatusLine().getStatusCode();

if(StatusCode==200){//状态码200表示成功

  String result = EntityUtils.toString(response.getEntity());

  
  JSONObject jsonObj = JSONObject.fromObject(result);

  //取到key

  int error_status = jsonObj.getInt("error_status");//请求状态如果==0
  String error_string=jsonObj.getString("error_string");//如果==Succeed表示成功

  if(error_status==0&error_string.equals("Succeed")){ 

    //解析json数组

      //评论内容
    JSONArray jsonArray=jsonObj.getJSONArray("data");
    int iSize = jsonArray.size();

    for(int i=0;i<iSize;i++){
      ipage=pageii;//记录异常出现使用
      JSONObject jso = jsonArray.getJSONObject(i);

      //去到相对应的key
      product_id=jso.getInt("product_id");
      String uname=jso.getString("cust_name");
      String content=jso.getString("content");
      String creation_date=jso.getString("creation_date");
      int review_id=jso.getInt("review_id");

    }

  }

 

}

遇到问题:这错误原因是commons-lang.jar包版本问题

我项目中是commons-lang3-3.2.1.jar改成commons-lang-2.6.jar就没问题了

包下载地址:http://pan.baidu.com/s/1pJE3sbL

bubuko.com,布布扣

 

java 解析json

标签:style   blog   http   io   ar   color   os   使用   sp   

原文地址:http://www.cnblogs.com/liujianpeng/p/4126035.html

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