这个
JSonObject json = new JSonObject(strResponse);// your strResponse is a json array
应该
JSonArray jsonarray = new JSonArray(strResponse);
[表示json数组节点
{ 表示json对象节点for(int i=0; i < jsonarray.length(); i++) { JSonObject jsonobject = jsonarray.getJSonObject(i); String id = jsonobject.getString("id"); String title = jsonobject.getString("title"); String company = jsonobject.getString("company"); String category = jsonobject.getString("category");}


