我想使用 Jsoup 解析链接。它工作正常,但是当我作为参数链接传递时,看起来像“http://translate.google.com”(包含超过 1 个点)会生成错误。
public class HtmlProcessor {
public String[] getLinks(String url) throws IOException {
Vector <String> hrefs = new Vector <String> ();
try {
Document doc = Jsoup.connect( url ).get();
Elements links = doc.getElementsByTag("a");
for (Element link : links) {
hrefs.add( link.attr( "href" ) );
}
} catch (ConnectException ex) {
System.out.println(ex.getMessage());
}
return hrefs.toArray( new String [hrefs.size()] );
}
}