Skip to content

Instantly share code, notes, and snippets.

View chandradeepanand's full-sized avatar

Chandradeep Anand chandradeepanand

  • Accenture
  • Bengaluru
View GitHub Profile
public class FetchWeatherTask extends AsyncTask<Void,Void,Void> {
private final String LOG_TAG = FetchWeatherTask.class.getSimpleName();
@Override
protected Void doInBackground(Void... params) {
// These two need to be declared outside the try/catch
// so that they can be closed in the finally block.
HttpURLConnection urlConnection = null;
BufferedReader reader = null;
// Will contain the raw JSON response as a string.