Java判斷一個(gè)鏈接是否有效
一、
/**
* 判斷鏈接是否有效
* 輸入鏈接
* 返回true或者false
*/
public static boolean isValid(String strLink) {
URL url;
try {
url = new URL(strLink);
HttpURLConnection connt = (HttpURLConnection)url.openConnection();
connt.setRequestMethod("HEAD");
String strMessage = connt.getResponseMessage();
if (strMessage.compareTo("Not Found") == 0) {
return false;
}
connt.disconnect();
} catch (Exception e) {
return false;
}
return true;
}
二、
package test;
import Java' target='_blank'>java.net.*;
public class riqi {
public static void main(String[] args) {
try {
URL url=new URL( "http://www.9iyyzm.com ");
URLConnection conn=url.openConnection();
String str=conn.getHeaderField(0);
if (str.indexOf( "OK ")> 0)
{
System.out.println( "正常! ");
}else{
System.out.println( "不能游覽 ");
}
} catch (Exception ex) {
}
/**
* 判斷鏈接是否有效
* 輸入鏈接
* 返回true或者false
*/
public static boolean isValid(String strLink) {
URL url;
try {
url = new URL(strLink);
HttpURLConnection connt = (HttpURLConnection)url.openConnection();
connt.setRequestMethod("HEAD");
String strMessage = connt.getResponseMessage();
if (strMessage.compareTo("Not Found") == 0) {
return false;
}
connt.disconnect();
} catch (Exception e) {
return false;
}
return true;
}
二、
package test;
import Java' target='_blank'>java.net.*;
public class riqi {
public static void main(String[] args) {
try {
URL url=new URL( "http://www.9iyyzm.com ");
URLConnection conn=url.openConnection();
String str=conn.getHeaderField(0);
if (str.indexOf( "OK ")> 0)
{
System.out.println( "正常! ");
}else{
System.out.println( "不能游覽 ");
}
} catch (Exception ex) {
}

# re: Java判斷一個(gè)鏈接是否有效 2012-02-21 15:49 greatghoul 回復(fù) 更多評論
我覺得用狀態(tài)碼判斷會(huì)更穩(wěn)妥一些。