后台验证url是不是有效的链接

/**
  * 判断链接是否有效
  * 输入链接
  * 返回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;
}

上一篇:VS2010/MFC编程入门之五(MFC消息映射机制概述)


下一篇:nginx 学习笔记(9) 配置HTTPS服务器--转载