Back to project page product-browser-android.
The source code is released under:
MIT License
If you think the Android project product-browser-android 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 org.okfn.pod; //from w ww . jav a2 s . c o m import android.os.AsyncTask; public class MyTask extends AsyncTask<String, Void, String>{ @Override protected String doInBackground(String... params) { String page = null; try { page = new Communicator().readUrl(params[0]); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } return page; } }