Android java.lang.NoClassDefFoundError: org.jsoup.Jsoup

前端 未结 8 1162
广开言路
广开言路 2020-12-01 22:12

I work with eclipse Version: Indigo Service Release 2 Build id: 20120216-1857. The Android version ist 2.2. I make an app to test a connect and parse a web site like this:

8条回答
  •  北海茫月
    2020-12-01 22:32

    You are doing it wrong. You cant use Jsoup functions in the oncreate of Activity. You need to make either Async Task or thread.

    This is to prevent doing blocking tasks in you activity.

    Here is a nice blog that explain how to do it and provide sample code as well.

    Sample Code Click here

提交回复
热议问题