Back to project page UTHPortal-Android-Gradle.
The source code is released under:
MIT License
If you think the Android project UTHPortal-Android-Gradle listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.uth.uthportal.network; // ww w . j a v a 2s. c o m import android.os.AsyncTask; /** * Created by Giorgos on 9/7/2014. */ public class AsyncJSONDownloader extends AsyncTask<String, Void, String> { protected String doInBackground(String... urls) { return JSONDownloader.getJSON(urls[0]); } /* protected void onPostExecute(String buffer) { // TODO: check this.exception // TODO: do something with the feed } */ }