im trying to pull this:
<tbody class="content" id="category_1_boards">
<tr id="board_1" class="windowbg2">
<td class="icon windowbg" rowspan="2">
<a href="http://android.myfewclicks.com/index.php?board=1.0">
<img src="http://android.myfewclicks.com/Themes/default/images/off.png" alt="No New Posts" title="No New Posts" />
</a>
</td>
<td class="info">
<a class="subject" href="http://android.myfewclicks.com/index.php?board=1.0" name="b1">A Board A</a>
<p></p>
</td>
<td class="stats windowbg">
<p>4 Posts <br />
4 Topics
</p>
</td>
<td class="lastpost">
<p><strong>Last post</strong> by <a href="http://android.myfewclicks.com/index.php?action=profile;u=1">admin</a><br />
in <a href="http://android.myfewclicks.com/index.php?topic=66.msg66#new" title="A Board A Child B">A Board A Child B</a><br />
on September 28, 2011, 02:17:59 PM
</p>
</td>
</tr>
<tr id="board_1_children">
<td colspan="3" class="children windowbg">
<strong>Child Boards</strong>: <a href="http://android.myfewclicks.com/index.php?board=17.0" title="No New Posts (Topics: 2, Posts: 2)">A Board A Child</a>
</td>
</tr>
<tr id="board_2" class="windowbg2">
<td class="icon windowbg">
<a href="http://android.myfewclicks.com/index.php?board=2.0">
<img src="http://android.myfewclicks.com/Themes/default/images/off.png" alt="No New Posts" title="No New Posts" />
</a>
</td>
<td class="info">
<a class="subject" href="http://android.myfewclicks.com/index.php?board=2.0" name="b2">A Board B</a>
<p></p>
</td>
<td class="stats windowbg">
<p>4 Posts <br />
4 Topics
</p>
</td>
<td class="lastpost">
<p><strong>Last post</strong> by <a href="http://android.myfewclicks.com/index.php?action=profile;u=1">admin</a><br />
in <a href="http://android.myfewclicks.com/index.php?topic=8.msg8#new" title="A B Topic D">A B Topic D</a><br />
on September 24, 2011, 06:17:44 AM
</p>
</td>
</tr>
<tr id="board_3" class="windowbg2">
<td class="icon windowbg">
<a href="http://android.myfewclicks.com/index.php?board=3.0">
<img src="http://android.myfewclicks.com/Themes/default/images/off.png" alt="No New Posts" title="No New Posts" />
</a>
</td>
<td class="info">
<a class="subject" href="http://android.myfewclicks.com/index.php?board=3.0" name="b3">A Board C</a>
<p></p>
</td>
<td class="stats windowbg">
<p>4 Posts <br />
4 Topics
</p>
</td>
<td class="lastpost">
<p><strong>Last post</strong> by <a href="http://android.myfewclicks.com/index.php?action=profile;u=1">admin</a><br />
in <a href="http://android.myfewclicks.com/index.php?topic=12.msg12#new" title="A C Topic D">A C Topic D</a><br />
on September 24, 2011, 06:19:52 AM
</p>
</td>
</tr>
<tr id="board_4" class="windowbg2">
<td class="icon windowbg">
<a href="http://android.myfewclicks.com/index.php?board=4.0">
<img src="http://android.myfewclicks.com/Themes/default/images/off.png" alt="No New Posts" title="No New Posts" />
</a>
</td>
<td class="info">
<a class="subject" href="http://android.myfewclicks.com/index.php?board=4.0" name="b4">A Board D</a>
<p></p>
</td>
<td class="stats windowbg">
<p>4 Posts <br />
4 Topics
</p>
</td>
<td class="lastpost">
<p><strong>Last post</strong> by <a href="http://android.myfewclicks.com/index.php?action=profile;u=1">admin</a><br />
in <a href="http://android.myfewclicks.com/index.php?topic=16.msg16#new" title="A D Topic D">A D Topic D</a><br />
on September 24, 2011, 06:20:49 AM
</p>
</td>
</tr>
</tbody>
i need to pull all that is inside the tbody.
Document boards = Jsoup.parse(con.html());
Elements board = boards.select("id.category_" + catseed.substring(1, catseed.length()) + "_boards");
that is the code i am attempting to use. (though i have tried at least 10 different ways)
catseed = "c1"; "category_" + catseed.substring(1, catseed.length()) + "_boards" = "category_1_boards"
jsoup.select() just isnt cooperating with anything im giving it.
any assistance would be greatly appreciated.
i posted the same basic thing, but the answer provided did not work. ive tried to solve this many times in the last 48 hours, and now i cant move forward till i can get select to do what im asking it to do.
after i successfully extract that i need to extract the href and text from:
<td class="info">
<a class="subject" href="http://android.myfewclicks.com/index.php?board=1.0" name="b1">A Board A</a>
<p></p>
</td>
please help me get jsoup to act right.