파일이 결과를 반환 & 다운로드 다운로드 기능 :
private static String download(String urlStr) throws IOException {
URL url = new URL(urlStr);
String ret = "";
BufferedInputStream bis = new BufferedInputStream(url.openStream());
byte[] buffer = new byte[1024];
int count = 0;
while ((count = bis.read(buffer, 0, 1024)) != -1) {
ret += new String(buffer, 0, count);
}
bis.close();
return ret;
}
이 JsonArray like that로 된 JSONObject & 변환을 구축 :
try {
String ret = download("http://www.omdbapi.com/?i=tt2975590&plot=full&r=json");
if (ret != null) {
JSONObject items = new JSONObject(ret);
Iterator x = items.keys();
JSONArray jsonArray = new JSONArray();
while (x.hasNext()) {
String key = (String) x.next();
jsonArray.put(items.get(key));
System.out.println(key + " : " + items.get(key));
}
}
} catch (IOException e) {
e.printStackTrace();
} catch (JSONException e) {
e.printStackTrace();
}
JSONObject를 JSONArray로 변환하는 방법은 무엇입니까? (http://stackoverflow.com/questions/22687771/how-to-convert-jsonobjects-to-jsonarray) –
데이터 캡처 방법을 알고 싶습니다. 이 링크에 의해 JASONarray 자바 – jayz