-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGetAPIReader.java
More file actions
64 lines (50 loc) · 1.31 KB
/
GetAPIReader.java
File metadata and controls
64 lines (50 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.mysitetwo;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.net.URL;
import java.nio.charset.Charset;
import org.json.JSONException;
import org.json.JSONObject;
public class GetAPIReader
{
private String URL;
JSONObject json;
public GetAPIReader(String URL) throws IOException, JSONException
{
this.URL = URL;
JSONObject json = readJsonFromUrl(this.URL);
this.json = json;
}
//GET METHODS
public JSONObject getJSON() throws IOException, JSONException
{
return json;
}
public String getJSONString()
{
return json.toString();
}
//GET METHODS
public static JSONObject readJsonFromUrl(String url) throws IOException, JSONException {
InputStream is = new URL(url).openStream();
try {
BufferedReader rd = new BufferedReader(new InputStreamReader(is, Charset.forName("UTF-8")));
String jsonText = readAll(rd);
JSONObject json = new JSONObject(jsonText);
return json;
} finally {
is.close();
}
}
private static String readAll(Reader rd) throws IOException {
StringBuilder sb = new StringBuilder();
int cp;
while ((cp = rd.read()) != -1) {
sb.append((char) cp);
}
return sb.toString();
}
}