我有一个像这样的标准AsyncTask:
// starting AsyncTask in onCreate
new TaskName().execute();
class TaskName extends AsyncTask<String, String, Void> {
private ProgressDialog progressDialog = new ProgressDialog(Items.this);
private InputStream is = null;
private String result = "";
protected void onPreExecute() {
progressDialog.setMessage("Loading...");
progressDialog.show();
progressDialog.setOnCancelListener(new OnCancelListener() {
public void onCancel(DialogInterface dialog) {
TaskName.this.cancel(true);
}
});
}
@Override
protected Void doInBackground(String... params) {
String url_select = "my_link.php";
param = new ArrayList<NameValuePair>();
param.add(new BasicNameValuePair("Category", Category));
HttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url_select);
try {
httpPost.setEntity(new UrlEncodedFormEntity(param));
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
// read content
is = httpEntity.getContent();
} catch (Exception e) {
Log.e("log_tag", "Error in http connection " + e.toString());
}
try {
BufferedReader br = new BufferedReader(
new InputStreamReader(is));
StringBuilder sb = new StringBuilder();
String line = "";
while ((line = br.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
result = sb.toString();
} catch (Exception e) {
// TODO: handle exception
Log.e("log_tag", "Error converting result " + e.toString());
}
return null;
}
protected void onPostExecute(Void v) {
try {
JSONArray jArray = new JSONArray(result);
JSONObject json_data = null;
for (int i = 0; i < jArray.length(); i++) {
json_data = jArray.getJSONObject(i);
item = json_data.getString("item");
items.add(item);
}
} catch (JSONException e1) {
Toast.makeText(getBaseContext(), "No items!",
Toast.LENGTH_SHORT).show();
} catch (ParseException e1) {
e1.printStackTrace();
}
progressDialog.dismiss();
}
}
然而,我发现自己有三个几乎相同的AsyncTasks做同样的事情。访问PHP文件,解析JSON&amp;打印JSON。
我搜索一下,看看是否有标准课我可以使用,但我找不到。有没有办法让这个更有效率,所以我不是重复这么多次?
答案 0 :(得分:2)
也许这会有所帮助,我不确定这是不是你要问的。
我不确定是否有类似的东西,但你当然可以开发一种基于模式的机制。例如,您可以创建一个名为DoInAsyncTask的接口,该接口上有一个方法doIt。然后让你的AsyncTask类在其构造函数中使用其中一个。
然后在onExecute方法中,它只是在传递给它的实例上调用doIt。
然后,将用于解析每个JSON字符串的所有专用代码放入一组实现DoInAsyncTask接口的不同类中。
然后你只有一个AsyncTask类,所有专门的代码都进入单独的解析类,你只需要在实例化你拥有的一个AsyncTask类时传入正确的代码。
很难写,希望这有一定道理并且是你所要求的。