Java判断一个链接是否有效
展开全部
一、
/**
* 判断链接是否有效
* 输入链接
* 返回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( "www.2cto.com正常! ");
}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( "www.2cto.com正常! ");
}else{
System.out.println( "不能游览 ");
}
} catch (Exception ex) {
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询