〖JAVE经验〗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.net.*;

public class riqi {

public static void main(String[] args) {

try {

URL url=new URL( “http://www.aaa.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) {

}

更多免费相关学习经验请访问:Tore_m_1206686_21115_1_1.html”>http://www.shangxueba.com/sTore_m_1206686_21115_1_1.html

通电话,旅行,重复一个承诺和梦想,

〖JAVE经验〗Java认证:判断链接是否有效

相关文章:

你感兴趣的文章:

标签云: