Created
March 10, 2012 19:56
-
-
Save zvineyard/2012742 to your computer and use it in GitHub Desktop.
Java: Get JSON from URL (Android)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
} | |
} |
Nice. I added some HttpConnectionParams to set the time outs on the socket and connection to allow more control.
He didnt try the code even once. holy goodness.
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
This should be using HttpGet instead of HttpPost