1)我有一个 JSON 文件:
{
"serverURI":"http://localhost:8080/PocketUNI_API/serverURLs",
"newsURI":"http://localhost:8080/gateway/rss/rss.xml",
"modulesURI":"http://localhost:8080/PocketUNI_API/modules"
}
2) 我需要在 Java 客户端上以字符串格式获取 URL。
String json = jsonReceiver.makeHttpRequest(URL_SERVER, "GET", params);
JSONArray uris = new JSONArray(json);
Receiver 工作正常,json 显示接收到的正确字符串,但是当它使用 JSONArray 解析时会引发错误
org.json.JSONException: Value {"serverURI":"http:\/\/192.168.0.... of type org.json.JSONObject cannot be converted to JSONArray.
问题:如何用 URL 值解析 json?