Created
January 29, 2014 08:33
-
-
Save edwerner/8683927 to your computer and use it in GitHub Desktop.
Android asynchronous task for retrieving JSON from a url endpoint.
This file contains 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
package com.video.listitem.app; | |
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.InputStreamReader; | |
import org.apache.http.HttpEntity; | |
import org.apache.http.HttpResponse; | |
import org.apache.http.client.ClientProtocolException; | |
import org.apache.http.client.HttpClient; | |
import org.apache.http.client.methods.HttpGet; | |
import org.apache.http.impl.client.DefaultHttpClient; | |
import org.json.JSONException; | |
import org.json.JSONObject; | |
import android.app.ProgressDialog; | |
import android.content.Context; | |
import android.os.AsyncTask; | |
public class RetreiveFeedTask extends AsyncTask<String, Void, JSONObject>{ | |
ProgressDialog progressDialog; | |
GetJSONListener getJSONListener; | |
static Context curContext; | |
static JSONObject json; | |
public RetreiveFeedTask(Context context, GetJSONListener listener){ | |
this.getJSONListener = listener; | |
curContext = context; | |
} | |
public static void setJsonFromNet(JSONObject object) { | |
json = object; | |
} | |
public static JSONObject getJson() { | |
return json; | |
} | |
public static void setContext(Context context) { | |
curContext = context; | |
} | |
public static Context getContext() { | |
return curContext; | |
} | |
private static String convertStreamToString(InputStream is) { | |
/* | |
* To convert the InputStream to String we use the BufferedReader.readLine() | |
* method. We iterate until the BufferedReader return null which means | |
* there's no more data to read. Each line will appended to a StringBuilder | |
* and returned as String. | |
*/ | |
BufferedReader reader = new BufferedReader(new InputStreamReader(is)); | |
StringBuilder sb = new StringBuilder(); | |
String line = null; | |
try { | |
while ((line = reader.readLine()) != null) { | |
sb.append(line + "\n"); | |
} | |
} catch (IOException e) { | |
e.printStackTrace(); | |
} finally { | |
try { | |
is.close(); | |
} catch (IOException e) { | |
e.printStackTrace(); | |
} | |
} | |
return sb.toString(); | |
} | |
public static JSONObject connect(String url) | |
{ | |
HttpClient httpclient = new DefaultHttpClient(); | |
// Prepare a request object | |
HttpGet httpget = new HttpGet(url); | |
// Execute the request | |
HttpResponse response; | |
try { | |
response = httpclient.execute(httpget); | |
// Get hold of the response entity | |
HttpEntity entity = response.getEntity(); | |
if (entity != null) { | |
// A Simple JSON Response Read | |
InputStream instream = entity.getContent(); | |
String result= convertStreamToString(instream); | |
// A Simple JSONObject Creation | |
JSONObject json = new JSONObject(result); | |
// Closing the input stream will trigger connection release | |
instream.close(); | |
return json; | |
} | |
} catch (ClientProtocolException e) { | |
e.printStackTrace(); | |
} catch (IOException e) { | |
e.printStackTrace(); | |
} catch (JSONException e) { | |
e.printStackTrace(); | |
} | |
return null; | |
} | |
@Override | |
public void onPreExecute() { | |
progressDialog = new ProgressDialog(curContext); | |
progressDialog.setMessage("Loading..Please wait.."); | |
progressDialog.setCancelable(false); | |
progressDialog.setIndeterminate(true); | |
progressDialog.show(); | |
} | |
@Override | |
protected JSONObject doInBackground(String... urls) { | |
return connect(urls[0]); | |
} | |
@Override | |
protected void onPostExecute(JSONObject json) { | |
getJSONListener.onRemoteCallComplete(json); | |
progressDialog.dismiss(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment