0

当我打开应用程序时,我收到消息“应用程序停止”。可能是什么原因?

主要类:

public class MainActivity extends Activity {

      @Override
      public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState); // Always call super.onCreate() first.
        setContentView(R.layout.activity_main); // Then load the layout.

        // Find textView3 in layout and set it's text to HTML code.
        // There's no need to create a new TextView() here.
        TextView textView = (TextView) findViewById(R.id.textView1);
        textView.setText(getHtmlCode());
      }

      // Structure your code. If it's a larger block that does one thing,
      // extract it into a method.
      private String getHtmlCode() {
        try {
          Document doc = Jsoup.connect("http://www.example.com/").get();
          Element content = doc.select("a").first();
         // return content.text();
          return "kktt";
        } catch (IOException e) {
          Toast.makeText(this, "Failed to load HTML code",
              Toast.LENGTH_SHORT).show();
          return "kk";
        }
      }
    }

////Elements divs = doc.select("div#test");   //select all the content of the div tags with the id attribute set to test

*我将 jar 添加到库中

4

2 回答 2

0

将 getHtmlCode() 移入 AsyncTask。您不应该对 onCreate() 方法或主线程进行网络操作。因此,将您的代码移动到 AsyncTask。并且可以在 AsyncTask 本身中更新 UI。

于 2013-08-20T10:24:55.463 回答
0

您需要对 Android 清单文件具有以下权限。

<uses-permission android:name="android.permission.INTERNET" />

添加上述权限后,需要将getHtmlCode()方法内的代码移动到异步任务或线程中。之后你就可以走了。

于 2016-06-16T18:39:17.850 回答