私は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文字列を解析したいのですが、3行にエラーがあります。
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
エラーは次のとおりimport org.json
です。解決できません。
私はここで立ち往生しています。