这是我认为您的JSON解析器应为的样子(可能存在一些拼写错误,我没有在编辑器上测试此代码:)):
JSonObject mainObj = new JSonOBject(myString);if(mainObj != null){ JSonArray list = mainObj.getJSonArray("prodCat_list"); if(list != null){ for(int i = 0; i < list.length();i++){ JSonObject elem = list.getJSonObject(i); if(elem != null){ JSonArray prods = elem.getJSonArray("prods"); if(prods != null){ for(int j = 0; j < prods.length();j++){ JSonObject innerElem = prods.getJSonObject(j); if(innerElem != null){ int cat_id = innerELem.getInt("cat_id"); int pos = innerElem.getInt("position"); String sku = innerElem.getString("sku"); } } } } } }}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)