I am new to Android. I have an AsyncTask that is downloading the content of a URL. I didn't want the AsyncTask to manipulate the UI directly and want it to have it as a reusable peice of code so I have put it in a file of its own and it returns a string. The problem is that the the return happens before the AsyncTask is finished (even though I am using the .get() of the .excecute()), so I get nothing back. Here is waht I have at the moment:
package com.example.mypackage;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.concurrent.ExecutionException;
import android.os.AsyncTask;
public class URLContent {
private String content = "default value";
public String getContent(String URL){
try {
new getAsyncContent().execute(URL).get();
} catch (InterruptedException e) {
content = e.getMessage();
} catch (ExecutionException e) {
content = e.getMessage();
}
return content;
}
private class getAsyncContent extends AsyncTask<String, Integer, String>
{
@Override
protected void onPostExecute(String result) {
content = result;
}
@Override
protected String doInBackground(String... urls) {
try{
return URLResponse(urls[0]);
} catch (Exception e){
return e.getMessage();
}
}
}
private String IStoString(InputStream stream) throws IOException, UnsupportedEncodingException {
try {
return new java.util.Scanner(stream, "UTF-8").useDelimiter("\\A").next();
} catch (java.util.NoSuchElementException e) {
return "";
}
}
private String URLResponse(String URLToget) throws IOException {
InputStream is = null;
try {
URL url = new URL(URLToget);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setReadTimeout(10000 /* milliseconds */);
conn.setConnectTimeout(15000 /* milliseconds */);
conn.setRequestMethod("GET");
conn.setDoInput(true);
conn.connect();
is = conn.getInputStream();
// Convert the InputStream into a string
String contentAsString = IStoString(is);
return contentAsString;
} finally {
if (is != null) {
is.close();
}
}
}
}
What would be the best way to solve that so that my main thread somehow gets back the results? I have come accross some articles mentioning events and callbacks. Is that the best way..?

URLResponsereturnsnulland you think it is not working. By the way yourAsyncTaskis synchronous by the way you use it. – Nikita Beloglazov Sep 21 '12 at 17:19