A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

一、
  /**
  * 判断链接是否有效
  * 输入链接
  * 返回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.9iyyzm.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) {
  }

1 个回复

倒序浏览
奈斯
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马