无法使用url在android中解析JSON

时间:2012-11-21 04:30:33

标签: android json web-services

我从使用intent的按钮单击获取按钮的id,并且id应该重定向到其他web服务。我写了一个web服务,它在浏览器中工作正常。我无法解析json并且无法知道我哪里出错了

任何人都可以建议我哪里出错了吗?

 Intent j = getIntent();
 int position = j.getExtras().getInt("id");
 String uri_book="http://apps.ADSFDS.com/service/details.php?bookid="+position;
 Log.i("uri", uri_book);
 List<NameValuePair> params = new ArrayList<NameValuePair>();
 JSONObject json = jParser.makeHttpRequest(uri_book, "GET",params);

编辑: - Json String的格式是这样的

 {
"bookdetails": [
    {
        "bid": "3",
        "name": "Introducing Html5",
        "bookid": "3",
        "description": null,
        "image1": "http://ecx.images-amazon.com/images/I/41S-eXdQS4L._SL500_PIsitb-sticker-arrow-big,TopRight,35,-73_OU01_.jpg",
        "image2": "http://www.html5videoguide.net/presentations/HTML5_Video_LCA2011/book_index.png"
    }
]
}

1 个答案:

答案 0 :(得分:1)

您可以查看this

教程。我想这会对你有帮助。