我想解析一个网址和后记,我想访问其中的一些数据。
try {
Document doc = Jsoup.connect("http://abc.com/en/currency/default.aspx").get();//abc is for example as i cant put site name
Elements td = doc.select("ctl00_ContentPlaceHolder1_currencylist_rptCurrencyList_ctl01_trList"); //this is the name of table row in html page i will show html page snippet also
String temp=td.val();
info.setText(temp);
}
catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} 我想要解析的html页面片段如下
<tr id="ctl00_ContentPlaceHolder1_currencylist_rptCurrencyList_ctl01_trList">
<td width="400px" class="CurrencyListItems">
UK POUND
</td>
<td width="60px;" class="CurrencyListItemsIN" align="center">
5.72
</td>
<td width="150px;" class="CurrencyListItemsLast">
<table cellspacing ="0" cellpadding ="0" width="100%">
<tr>
<td class="CurrencyListBANKNOTES" align="center">
5.625
</td>
<td class="CurrencyListBANKNOTES2" width="75px" align="center">
5.75
</td>
</tr>
</table>
</td>我想从上面的html英国磅,5.625,5.75我尝试了上面的代码,但thng是它不是解析网址,只有它的jus出来,如果尝试
发布于 2011-11-27 19:45:58
试试这个:
Element tr = doc.getElementById("ctl00_ContentPlaceHolder1_currencylist_rptCurrencyList_ctl01_trList");试一试
String contents = tr.text().trim();
contents = contents.replaceAll("\\s+"," ");
contents = contents. replaceAll("\\<.*?>","-");
String []values = contents.split("-");或
Elements elements = tr.select("*");
for (Element element : elements) {
System.out.println(element.ownText());
}https://stackoverflow.com/questions/8278398
复制相似问题