欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java HttpURLConnection超时和IO异常处理

程序员文章站 2024-03-12 19:14:20
最近同步数据的时候发现了一个问题,我本身后台插入数据后给其他部门后台做同步。说简单一点其实就是调用对方提供的接口,进行http请求调用。然后后面发现问题了。http请求的话...

最近同步数据的时候发现了一个问题,我本身后台插入数据后给其他部门后台做同步。说简单一点其实就是调用对方提供的接口,进行http请求调用。然后后面发现问题了。http请求的话,有可能请求超时,中断失败,io异常其实都有可能,如果是平时打开一个网页还好,打不开的时候,你会关掉,或者他页面给你显示信息。但是同步,不可以这样做,一旦请求失败,必须让数据正确的同步,今天才意识到这个问题的重要性。

string httpurl = "https://www.baidu.com/s?ie=utf-8&tn=90594569_hao_pg&wd=1"; 
url url = null; 
httpurlconnection httpconn = null; 
string result = ""; 
try { 
  string address = httpurl; 
  url = new url(address); 
  httpconn = (httpurlconnection) url.openconnection(); 
   
  //a url connection can be used for input and/or output. set the  
  //doinput flag to true if you intend to use the url connection for input, 
  //false if not. the default is true.  
   
  //url连接可用于input或output。如果想用url连接输入,设置doinput标签为true。 
  //输入和输出是针对计算机的,如果以程序员的角度考虑,经常弄混。 
  //input输入,output输出,那么不是从output里read,input中write吗,其实相反 
  //input输入进计算机,计算机才能读,所以是从input read,而output是计算机输出,通过output write。 
  httpconn.setdooutput(false); 
  //所以如果setdoinput(false),想从urlconnection读取时不能读取 
  //cannot read from urlconnection if doinput=false (call setdoinput(true))  
  httpconn.setdoinput(true); 
   
  //连接建立超时时间还有读取数据超时时间, 
  httpconn.setconnecttimeout(600000); 
  httpconn.setreadtimeout(600000); 
  httpconn.setrequestmethod("get"); 
  httpconn.connect(); 
  
  //获取状态码 
  int code = httpconn.getresponsecode(); 
  system.out.println(code); 
  //读http请求响应 
  bufferedreader reader = new bufferedreader(new inputstreamreader(httpconn.getinputstream())); 
  string line; 
  while ((line = reader.readline()) != null) 
  { 
    result = result + line+"\n"; 
  } 
  system.out.println(result); 
  //关闭io和连接 
  reader.close(); 
  httpconn.disconnect(); 
} 
catch(exception e){ 
  log.error(e); 
} 
finally{ 
  if(httpconn!=null) 
    httpconn.disconnect(); 
} 

代码看上去写的没什么,该释放资源的地方也释放了。该打日志输出的也打了。其实问题就是异常的处理。之前以为一些东西没有同步过去是因为连接超时的问题。所以特地捕获sockettimeoutexception异常,后面看了日志之后,发现是同步接口那边服务器的问题,报了502错误。其实异常是io异常。

无论是那种情况,我们都要在出现这种问题之后,再次地把请求发送过去,根据接口返回的结果,确认对方已经同步到。如果服务器暂时性的出了问题,我们可以暂停一小段时间后,然后再次请求。

所以暂时想到的方法是,由于同步的实时性要求不高,那么可以间隔的时间可以长一点。然后循环,另起线程,每次间隔5分钟,直至结果正常。

catch(exception e){ 
  for (int i = 0; i < 6; i++) { 
    thread t = new thread(){public void run(){get();}}; 
    t.start(); 
    if(result.equals("ok")){ 
      break; 
    } 
    try { 
      thread.sleep(300000); 
    } catch (interruptedexception e2) { 
      log.error(e2); 
    } 
  } 
  log.error(e); 
} 





以上就是对java  httpurlconnection超时和io异常处理的资料整理,后续继续补充相关资料,谢谢大家对本站的支持!