-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJsonActivity.java
More file actions
53 lines (44 loc) · 1.33 KB
/
JsonActivity.java
File metadata and controls
53 lines (44 loc) · 1.33 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
import android.os.AsyncTask;
import org.json.JSONObject;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
public class JsonActivity extends AsyncTask<String, Void, JSONObject> {
@Override
protected JSONObject doInBackground(String... params) {
URL url;
URLConnection connection;
BufferedReader reader = null;
StringBuffer buffer;
String line;
try {
url = new URL(params[0]);
connection = url.openConnection();
reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
buffer = new StringBuffer();
while ((line = reader.readLine()) != null) {
buffer.append(line);
}
return new JSONObject(buffer.toString());
} catch (Exception ex) {
ex.printStackTrace();
return null;
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
@Override
protected void onPostExecute(JSONObject json) {
if (json != null) {
// Get JSON here
}
}
}