我剛剛開始使用網絡分配,並且我已經卡住了。 作業要求我檢查用戶提供的網站鏈接,並通過閱讀標題信息來確定它們是否處於活動或不活動狀態。 到目前爲止,谷歌搜索後,我只是有這個代碼檢索網站。我不知道如何查看這些信息並查找HTML鏈接。 這裏是代碼:如何從URL中獲取HTML鏈接
import java.net.*;
import java.io.*;
public class url_checker {
public static void main(String[] args) throws Exception {
URL yahoo = new URL("http://yahoo.com");
URLConnection yc = yahoo.openConnection();
BufferedReader in = new BufferedReader(
new InputStreamReader(
yc.getInputStream()));
String inputLine;
int count = 0;
while ((inputLine = in.readLine()) != null) {
System.out.println (inputLine);
}
in.close();
}
}
請幫忙。 謝謝!
感謝您的回覆!我在查找用戶提供的網頁上的鏈接時遇到問題。在確定了所有鏈接後,我將使用您的方法。 – 2011-02-07 02:26:29