爷的眼睛闪亮
insideDotNet En_summerGarden

/**
  * 判断链接是否有效
  * 输入链接
  * 返回true或者false
  */
public static boolean isValid(String strLink){
  URL url=null;
 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){
    logger.error("验证是否是有效链接失败!");
    return false;
  }
   return true;
}

posted on 2016-11-17 16:45  爷的眼睛闪亮  阅读(448)  评论(0编辑  收藏  举报