现在的位置: 首页 > 综合 > 正文

使用java快速判断网页链接是否有效

2013年09月06日 ⁄ 综合 ⁄ 共 405字 ⁄ 字号 评论关闭
/**
  * 判断链接是否有效
  * 输入链接
  * 返回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;
 } 

抱歉!评论已关闭.