0

我有我的 HTML 数据

 <table border='0' cellpadding='3' bgcolor="#CCCCCC" class="hostinfo_title2"  width='100%' align="center">
                <tr align='center' bgcolor="#ffffff">
                  <td width='26%' class="hostinfo_title3">Archive Url</td>
                </tr>

                <tr bgcolor="#ffffff"
                  <td height="25" align="center">http://www.toradio.com/prgramdetails/20130413_vali_mm.mp3</td>

                </tr>
                              </table>

我想从上面的 HTML 文本中获取 mp3 url( http://www.toradio.com/prgramdetails/20130413_vali_mm.mp3 )。

我正在关注此链接,它是正确的还是解析此文本的更好方法有人可以帮忙吗?

4

1 回答 1

1

查看JSoup。这是一个不错的 JAVA HTML 解析器。

您应该可以通过以下方式做到这一点:

String html = "<YOUR HTML HERE>";
Document doc = Jsoup.parse(html);
Elements tds = doc.select("table.hostinfo_title2").select("td");

String mp3Link = "";
for(Element td : tds) {
     if(td.text().contains("mp3") {
         mp3Link = td.text();
         // do something with mp3Link
     }
}
于 2013-04-16T10:28:00.430 回答