我String
从服务器收到以下响应:
{"fid":"1272","uri":"http://someurl/services/file/1272"}
我需要将其转换为JSONArray
. 有什么帮助吗?
顺便说一句,我试过这个,但它不起作用:
String response=getResponseFromServer();
JSONArray array = new JSONArray(response);
我得到错误:
org.json.JSONException: Value {"fid":"1272","uri":"http://someurl/services/file/1272"} of type org.json.JSONObject cannot be converted to JSONArray