1
Well, I want to use Jsoup to take a table from a site and show it in the application. The problem is that this table has no id. How do I get this table and display in the app? Here is the site:http://warface.uol.com.br/suporte/lista-de-punidos
1
Well, I want to use Jsoup to take a table from a site and show it in the application. The problem is that this table has no id. How do I get this table and display in the app? Here is the site:http://warface.uol.com.br/suporte/lista-de-punidos
1
With Jsoup, the search for elements does not need to be exclusively by Id. You can also search for CSS Selectors. So:
Elements elements = document.select("#main > div > div.conteudo > table");
Browser other questions tagged jsoup
You are not signed in. Login or sign up in order to post.