AndroidでAsyncTaskを使用してサーバーにリクエストを送信し、データを別のクラスに受け取ります。AsyncTask は何も返さないことを知っているので、他の人が作成したコードを使用して、インターフェイスを使用して文字列を返しました。
ここに AsyncTask クラス コードがあります。
public class WebRequest extends AsyncTask<String, Void, String> {
//Data
public String mFileContents = "false";
//API-Info
public WebRequestResponse delegate = null;
public WebRequest(WebRequestResponse asyncResponse) {
delegate = asyncResponse;//Assigning call back interfacethrough constructor
}
@Override
protected String doInBackground(String... params) {
mFileContents = downloadFile(params[0]);
if(mFileContents == null) {
Log.d("DownloadData", "Error Downloading");
}
return mFileContents;
}
protected void oonPostExecute(String result) {
super.onPostExecute(result);
delegate.processFinish(mFileContents);
Log.d("DownloadData", "Result was: " + result); //result
}
private String downloadFile(String urlPath) {
StringBuilder tempBuffer = new StringBuilder();
try {
URL url = new URL(urlPath);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
int response = connection.getResponseCode();
Log.d("DownloadData", "The response code was " + response);
InputStream is = connection.getInputStream();
InputStreamReader isr = new InputStreamReader(is);
int charRead;
char[] inputBuffer = new char[500];
while(true){
charRead = isr.read(inputBuffer);
if(charRead <=0) {
break;
}
tempBuffer.append(String.copyValueOf(inputBuffer, 0, charRead));
}
return tempBuffer.toString();
} catch(IOException e) {
Log.d("DownloadData", "IO Exception reading data: " + e.getMessage());
e.printStackTrace();
} catch(SecurityException e) {
Log.d("DownloadData", "Security exception. Needs permissions? " + e.getMessage());
}
return null;
}
}
さて、インターフェイス:
public interface WebRequestResponse {
void processFinish(String output);
}
同期クラスには次のものがあります。
public class API implements WebRequestResponse {
そして、私は実行を次のようにします:
public static void StartRequest(String url) {
String response = null;
WebRequest Request = new WebRequest(new WebRequestResponse() {
@Override
public void processFinish(String output) {
Test(output); //Testing the response code
}
});
Request.execute(url);
}
問題は、コードが呼び出されず、何も返されないことです。Log.d を使用すると、ここから何も機能しないことがわかりました: "delegate.processFinish(mFileContents);" AsyncTask クラスで割り当てられます。私は何を間違っていますか?
ありがとう