使用 HttpURL 连接时的“非法状态异常:已连接”

2022-09-03 03:53:10

当我将DoOutput设置为true时,我得到了一个非法的状态异常。

public boolean sendLinksToMaster(String ipport, List<String> links){

        boolean sent = false;
        String[] tokens = ipport.split(":");    
        String data = edu.cis555.searchengine.utils.Utils.generateLinks(links);
        HttpURLConnection conn=null;
        try{
            String encodedData = URLEncoder.encode(data, "UTF-8");
        try{

                String ip =tokens[0];
                String port = tokens[1];
                String path = edu.cis555.searchengine.utils.Constants.URL_ADD_LINK;
                System.setProperty("http.keepAlive", "false");
                URL u = new URL("http", ip, Integer.parseInt(port),"/"+path);

                conn = (HttpURLConnection)u.openConnection();
                //ERROR IN THIS LINE
                conn.setDoOutput(true);
                conn.setRequestMethod("POST");
                OutputStream stream = conn.getOutputStream();
                stream.write(encodedData.getBytes());
                stream.close();

                if(conn.getResponseCode() == HttpURLConnection.HTTP_OK)
                    sent=true;

            //  LOG.debug(conn.getResponseCode());
                conn.disconnect();
            }catch(MalformedURLException mfe){
                LOG.debug(mfe.getMessage());
                if(conn!=null){
                    conn.disconnect();
                }
            }catch(IOException ioe){
                LOG.debug(ioe.getMessage());
                if(conn!=null){
                    conn.disconnect();
                }
            }

        }catch(Exception e){
            LOG.debug(e.getMessage());
            if(conn!=null){
                conn.disconnect();
            }
        }
        return sent;

    }

为同一内容显示的堆栈跟踪为:

java.lang.IllegalStateException: Already connected
at java.net.URLConnection.setDoOutput(Unknown Source)
at edu.upenn.cis455.xpathengine.utils.pool.ThreadPool.sendLinksToMaster(ThreadPool.java:357)
at edu.upenn.cis455.xpathengine.utils.pool.ThreadPool$Worker.processAndAddToQueue(ThreadPool.java:314)
at edu.upenn.cis455.xpathengine.utils.pool.ThreadPool$Worker.run(ThreadPool.java:269)
at java.lang.Thread.run(Unknown Source)

我没有看到我在发送请求时做错了什么。任何人都可以指出缺少什么或我做错了什么


答案 1

我遇到了同样的问题并解决了它。就我而言,这是因为我在 NetBeans 的调试界面中有一个被遗忘的监视。希望它可以帮助其他人犯同样的错误。connection.getResponseCode()

如果您有任何相对于请求响应值的监视,例如 、,甚至只是 ,您将在调试模式下收到此错误。getResponseCode()getResponseMessage()getInputStream()connect()

前面的所有方法都隐式调用并触发该请求。因此,当您到达时,连接已经建立。connect()setDoOutput


答案 2

除了上一条评论中提到的手表外,如果连接出现问题,也可能发生这种情况。例如:

我正在设置一个属性:在写入OutPut Stream之后,就像post.setRequestProperty("Ocp-Apim-Subscription-Key", "<>")post.getOutputStream().write(jsonBody.getBytes("UTF-8"));

就像:

post.getOutputStream().write(jsonBody.getBytes("UTF-8"))
post.setRequestProperty("Ocp-Apim-Subscription-Key", "<>")

在这种情况下,我也得到了“已经连接”。为了修复它,我把它变成这样:

post.setRequestProperty("Ocp-Apim-Subscription-Key", "<>")
post.getOutputStream().write(jsonBody.getBytes("UTF-8"))

推荐