嗨我只有一个参数来解析
这是我试过的......
JSONObject jsonObject = new JSONObject(response);
JSONArray result = jsonObject.getJSONArray("result");
以下是json
{"result" : "169489465811879423"}
答案 0 :(得分:0)
使用此
JSONObject jsonObject = new JSONObject(response);
String result = jsonObject.getString("result");
这里没有JsonArray,你正试图获得一个数组