我正在尝试创建一个类来从url中检索JsonArray。 此类扩展了AsyncTask以避免在接口上创建多个AsyncTasks。
该类在调试器上工作正常,但我不知道如何获取返回对象。任何人都可以帮助我吗?
这是我的班级:
public class QueryJsonArray extends AsyncTask<String, Void, Void>{
JSONArray jsonRetorno = null;
@Override
protected Void doInBackground(String... params) {
InputStream is = null;
String result = "";
try {
Log.i(getClass().getName(), params[0]);
HttpClient httpclient = new DefaultHttpClient();
HttpGet httpGet = new HttpGet( params[0]);
HttpResponse response = httpclient.execute(httpGet);
if(response.getStatusLine().getStatusCode()==200){
HttpEntity entity = response.getEntity();
is = entity.getContent();
}else{
is = null;
}
} catch(Exception e) {
e.printStackTrace();
}
if(is!=null){
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(is,"utf-8"),8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
result = sb.toString();
} catch(Exception e) {
e.printStackTrace();
}
try {
jsonRetorno = new JSONArray(result);
} catch(JSONException e) {
e.printStackTrace();
}
}
return null;
}
}
我想要像这样检索:
QueryJsonArray obj = new QueryJsonArray();
JSONArray jArray = obj.execute(myUrl);
提前致谢。
答案 0 :(得分:2)
您需要使用回调。只需添加以下内容......
变量:
private Callback callback;
内接口:
public interface Callback{
public void call(JSONArray array);
}
构造
public QueryJsonArray(Callback callback) {
this.callback = callback;
}
此外,将您的班级声明更改为:
public class QueryJsonArray extends AsyncTask<Void, Void, JSONArray>
并将doInBackground
的返回类型更改为JSONArray
。
在doInBackground
结束时,添加:
return jsonRetorno;
最后,使用内容添加以下方法:
public void onPostExecute(JSONArray array) {
callback.call(array);
}
现在,要执行任务,只需执行:
QueryJsonArray obj = new QueryJsonArray(new Callback() {
public void call(JSONArray array) {
//TODO: here you can handle the array
}
});
JSONArray jArray = obj.execute(myUrl);
作为旁注,您可以使用第三方库(例如droidQuery)大大简化所有这些,这会将以上所有代码压缩为:
$.ajax(new AjaxOptions().url(myUrl).success(new Function() {
public void invoke($ d, Object… args) {
JSONArray array = (JSONArray) args[0];
//TODO handle the json array.
}
});