How to purse a whole table using jsoup into Android?
let input:
<table>
<tr>
<th>name</th>
<th>age</th>
</tr>
<tr>
<td>john doe</td>
<td>25</td>
</tr>
<tr>
<td>xxx yyy </td>
<td>28</td>
</tr>
output: name age john doe 25 xxx yyy 28 .Btw, you won't have to take the input manually. I need to purse the table from my website.