我正在使用java從網頁中獲取標題文本。如何從java中的任何網頁獲取標題文本
我使用標記名如下必須獲取圖像從網頁:
int i=1;
InputStream in=new URL("www.yahoo.com").openStream();
org.w3c.dom.Document doc= new Tidy().parseDOM(in, null);
NodeList img=doc.getElementsByTagName("img");
ArrayList<String> list=new ArrayList<String>();
list.add(img.item(i).getAttributes().getNamedItem("src").getNodeValue());
這是工作,但我想從獲取網頁(www.yahoo.com)的標題標籤使用相同的代碼 爲以上。我已經提到getElementsByTagName(「title」);但它不起作用。 請幫助我,如何做到這一點使用jtidy解析器如上。
感謝馬特,它幫助我。 – DJ31 2011-05-07 11:31:29
不客氣。 – Matt 2011-05-07 12:15:59