Getting Table Row Text From Url
I'm using Jsoup to extract text from table cells. But I get null error. I would like to get the text inside
of each . How would I do that? Document doc = Jsoup.
Solution 1:
Tested your code in a simple java project too --> works
- Does your url start with
http://
? - Do you run your code in an
AsyncTask
? - Does your android block internet access?
- Please post a stacktrace or some more information about the exception
Solution 2:
I put the code in an AsyncTask and now it works.
Post a Comment for "Getting Table Row Text From Url"