1. ホーム
  2. java

[解決済み] "Illegal State Exception: HttpURLConnection使用時の "Already Connected "について

2022-03-13 13:39:54

質問

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)

リクエストの送信で間違っていることは何もありません。何が足りないのか、何が間違っているのか、どなたかご指摘ください。

解決方法を教えてください。

私も同じ問題に遭遇し、解決しました。私の場合は、「Space」の「Watch」を忘れていたのが原因でした。 connection.getResponseCode() NetBeansのデバッグインターフェイスで。同じ間違いをする他の人を助けるかもしれないことを望みます。

など、リクエストのレスポンス値に関連するwatchがある場合、そのwatchを使用することができます。 getResponseCode() , getResponseMessage() , getInputStream() または単に connect() デバッグモードでこのエラーが発生します。

これまでのすべてのメソッドは、暗黙のうちに connect() を作成し、リクエストを発行します。そのため setDoOutput 接続はすでに確立されています。