Skip to content

Instantly share code, notes, and snippets.

@zvineyard
Created March 10, 2012 19:56
Show Gist options
  • Star 20 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save zvineyard/2012742 to your computer and use it in GitHub Desktop.
Save zvineyard/2012742 to your computer and use it in GitHub Desktop.
Java: Get JSON from URL (Android)
public class Json {
public static JSONObject getJson(String url){
InputStream is = null;
String result = "";
JSONObject jsonObject = null;
// HTTP
try {
HttpClient httpclient = new DefaultHttpClient(); // for port 80 requests!
HttpPost httppost = new HttpPost(url);
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
is = entity.getContent();
} catch(Exception e) {
return null;
}
// Read response to string
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(is,"utf-8"),8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
result = sb.toString();
} catch(Exception e) {
return null;
}
// Convert string to object
try {
jsonObject = new JSONObject(result);
} catch(JSONException e) {
return null;
}
return jsonObject;
}
}
@gourneau
Copy link

This should be using HttpGet instead of HttpPost

@tomlins
Copy link

tomlins commented Nov 14, 2013

Nice. I added some HttpConnectionParams to set the time outs on the socket and connection to allow more control.

@tlundgren
Copy link

He didnt try the code even once. holy goodness.

@MichalKalita
Copy link

I don't have a class HttpClient, it was removed in Android 6

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment