Java,HttpURLConnection处理CLOSE_WAIT连接

时间:2015-05-19 12:27:25

标签: java httpurlconnection

我正在使用java HttpURLConnection进行REST调用。在使用所有其余api工作(使用ant目标测试rest调用)后,我看到有许多套接字连接处于'CLOSE_WAIT'状态。

我尝试通过调用HttpURLConnection的InputStream或OutputStream上的close()方法,但连接仍然只处于CLOSE_WAIT状态。

另一个观察是使用con.disconnect()方法,连接也没有被关闭。

请帮助我解决此问题,因为CLOSE_WAIT连接表明软件中存在错误。

以下是来电的代码。其他POST / PUT / DELETE调用也类似于'get'

public void get(String url, Header[] headers,
            NameValuePair[] data, ResponseHandler handler) throws HttpException {       
        HttpURLConnection con = null;
        try
        {
        String query = null;
        if (data != null) {
                query = getQueryString(data);
            }
        URL obj;
        if(query == null || query == "")            
            obj = new URL(url);
        else
            obj = new URL(url+"?"+query);       
        con = (HttpURLConnection) obj.openConnection();     
        setDoAuthentication(con);
        con.setRequestMethod("GET");
        con.setDoOutput(true);      
        if (headers != null) {
            for (int i = 0; i < headers.length; i++) {
                con.setRequestProperty(headers[i].getName(), headers[i].getValue());
            }           
        }                       
        con.setRequestProperty("Accept-encoding", "gzip");      
        con.setRequestProperty("Authorization", this.auth);     
        int responseCode = con.getResponseCode();       
        if (responseCode == HttpURLConnection.HTTP_OK) {
            if (handler!=null) handler.handleResponse(con);  // in handleResponse(con) method, I am closing the con input stream
        } else if (responseCode == HttpURLConnection.HTTP_UNAUTHORIZED) {
            throw new HttpException(new UnauthorizedException());
        } else if (!is2xx(responseCode)) {
            ErrorHandler errHandler = new ErrorHandler();
            errHandler.handleResponse(con);
            throw errHandler.getResult();
        }       
    } 
        catch (MalformedURLException e) {
            throw new HttpException(e);
        }
        catch (IOException e) {
            handleSessionConnectionError(e, url);
        }       
        finally {
              con.disconnect();
            }       
        }

由于

Mohan G

1 个答案:

答案 0 :(得分:0)

致电con.disconnect()可能会导致问题。在此链接link中进行检查。

它将不断创建套接字,如果连接是多个,它将​​超过每个进程打开文件的最大限制,例如在Linux中通常是1024。 不必使用断开连接,总要关闭输入流,而在达到限制时,java系统属性中的http.maxConnection中定义的值将完成关闭空闲连接的工作。

还要检查类中HttpUrlConnection的javadoc和方法是否断开连接。