Well, I'm looking to use JSoup to grab a table from a website and show it in the application. The problem is that this table has no id. How do I get this table and display it in the app? Here is the site: link
Well, I'm looking to use JSoup to grab a table from a website and show it in the application. The problem is that this table has no id. How do I get this table and display it in the app? Here is the site: link
With JSoup, element search does not have to be exclusively by Id. You can also do search by CSS Selectors. So:
Elements elements = document.select("#main > div > div.conteudo > table");