解析数据时出错 org.json.JSONException:
java.lang.String 类型的值无法转换为 JSONArray
JSONArray jsonArray = new JSONArray(result);
JSONArray ja= (JSONArray) jsonArray.get(0);
JSONObject jb = (JSONObject) ja.get(0);
//String firstvalue = jb.getString("0");
int secondvalue = jb.getInt("customer_id");
Myjson 输出应该像[[{"0":"2","customer_id":"2"}]]
我正在使用像这样的 php 来生成输出
$output[]= $customerid;
print(json_encode($output));