3

我在我的应用程序中使用 AsyncTask,但是当它启动时,它就像永远不会结束。当我在doInBackground应用程序冻结并卡在ThreadPoolExecutor.runWorker(ThreadPoolExecutor$Worker).

这是我的代码的结构

class FetchSymbolInfo extends AsyncTask<String, Void, Document> {

        private Exception exception = null;

        @Override
        protected Document doInBackground(String... params) 
        {
            try 
            {
                Document doc = null;
                //doc = Jsoup.connect(params[0]).get();//application freezes even if I remove this line
                return doc;
            } 
            catch (Exception e) 
            {
                this.exception = e;
                return null;
            }
        }

        @Override
        protected void onPostExecute(Document result) 
        {
            if(exception != null)
        {
            AlertDialog alertDialog;
            alertDialog = new AlertDialog.Builder(null).create();//////////
            alertDialog.setTitle("Error");
            alertDialog.setMessage("Could not fetch from internetd\nPlease check your inernet connection and symbol name.");
            alertDialog.show();
            return;
        }

        Elements valueElement = result.select("div#qwidget_lastsale");
        String valueString = valueElement.toString();
        //getting number from string
        }

        @Override
          protected void onPreExecute() {
          }

        @Override
        protected void onCancelled() {
            super.onCancelled();
        }

        @Override
        protected void onCancelled(Document result) {
            super.onCancelled(result);
        }

        @Override
        protected void onProgressUpdate(Void... values) {
            super.onProgressUpdate(values);
        }

我正在尝试像这样执行它

String url = "url";  //writing an url
FetchSymbolInfo fetch = new FetchSymbolInfo();
fetch.execute(url);

有任何想法吗?先感谢您!

4

2 回答 2

1

您正在尝试AlertDialog通过提供null Context. 您需要做的是通过将上下文传递给任务的构造函数,然后将其与对话框一起使用,从Activity调用传递一个有效的上下文:AsyncTask

class FetchSymbolInfo extends AsyncTask<String, Void, Document> {

private Context parent;

// ...

public FetchSymbolInfo(Context c){
    parent = c;
}

// ...

if(exception != null){
    AlertDialog alertDialog;
    alertDialog = new AlertDialog.Builder(parent).create();
    alertDialog.setTitle("Error");
    alertDialog.setMessage("Could not fetch from internetd\nPlease check your inernet connection and symbol name.");
    alertDialog.show();
    return;
}

补充:虽然与问题没有直接关系,但我认为在这里提一下很重要,而不是像 OP 那样在新线程中设置断点,你不会击中它 - 你最好使用它Log来跟踪输入/退出方法/代码块。

于 2013-07-31T07:04:35.583 回答
0

看起来你应该得到一个 NPE。

    Elements valueElement = result.select("div#qwidget_lastsale");
于 2013-07-29T20:23:57.477 回答