我使用 Eclipse。我正在读取一个 url 并检索一个 json 字符串:
String message = "http://XXXXXXXXX";
try {
website = new URL(message);
URLConnection connection = website.openConnection();
BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String inputLine;
while ((inputLine = in.readLine()) != null)
str1 += inputLine;
} catch (MalformedURLException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
try {
JSONObject jsono = new JSONObject(str1);
JSONObject results =jsono.getJSONObject("results");
JSONArray result =results.getJSONArray("result");
} catch(JSONException ex) {
System.out.println("Exception thrown: " + ex.getMessage());
}
我可以得到它,我可以打印出来。然后我想用 JSONArray 和 JSONObject 解析 json 字符串,但是这三行有错误:
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
错误是:import org.json
无法解决。
我被困在这里。