我有一个asynctask - 当执行时 - 立即被取消。
我的班级看起来像这样:
public class JSONParser extends AsyncTask<String, Void, JSONArray> {
private ListFragment fragment;
@Override
protected JSONArray doInBackground(String... strings) {
JSONArray ja = null;
String string = "";
try {
URL url = new URL(strings[0]);
BufferedReader br = new BufferedReader(new InputStreamReader(url.openStream()));
string = br.readLine();
ja = new JSONArray(string);
} catch (Exception e ) {
Log.w("Special", e.toString());
}
return ja;
}
public JSONParser(ListFragment fragment) {
this.fragment = fragment;
}
@Override
protected void onPostExecute(JSONArray jsonArray) {
try {
ArrayList<HashMap<String ,String>> datalist = new ArrayList<HashMap<String, String>>();
int i = 0;
while (i < jsonArray.length()) {
HashMap<String, String> map = new HashMap<String, String>();
JSONObject tool = jsonArray.getJSONObject(i);
map.put("id", tool.getInt("Id") + "");
map.put("name", tool.getString("Name"));
datalist.add(map);
i++;
}
fragment.setListAdapter(new SimpleAdapter(fragment.getActivity(), datalist, R.layout.tools_list, new String[] {"name"}, new int[] {R.id.text}));
} catch (Exception e) {
e.getMessage();
}
}
}
从我的片段我称之为
AsyncTask task = new JSONParser(this).execute("http://10.0.2.2:1288/webservice/gettools.aspx");
使用调试器我可以看到,只要调用构造函数,它就会跳到onCancelled()并返回。 URL有效且有效,我在日志中没有消息,JSON有效。
更新:我也拥有所需的权限,并在进入doInBackground()之前调用OnCancelled()。永远不会调用doInBackground()。
有什么想法吗?
我正在使用IntelliJ和Android 4.0.3的AVD。
答案 0 :(得分:1)
您是否在AndroidManifest中设置了Internet权限? 您确定在doInBackground中没有触发异常吗?
也许将do(i&lt; jsonArray.length())部分放在doInBackground中可能是个更好的主意:)(性能)
读取字符串的代码:
BufferedReader reader = new BufferedReader(yourInputStreamReader,8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
答案 1 :(得分:0)
... oehm 您正在使用活动对象创建任务(this)(???)
AsyncTask task = new JSONParser(this).execute("http://10.0.2.2:1288/webservic /gettools.aspx");
但您的任务需要一个视图
public JSONParser(ListFragment fragment) {
我很惊讶这不会引发异常