0

私はすでにHttpURLConnectionJava や Android (接続プールでの作業のデフォルトの実装がない) での作業の詳細を説明するリソースを調べました。私の質問は、から取得したストリームを閉じるHttpURLConnectionと、システムは次回同じものSocketを確立するときに新しいものを使用するか、既存のものを使用しようとしますか? 次のコードを検討してください。HttpURLConnectionURL

private byte[] downloadText(URL url, String data) {
   OutputStream out = null;
   InputStream in = null;
   HttpURLConnection conn = (HttpURLConnection) url.openConnection();

   try {
      conn.setRequestMethod("POST");
      conn.setReadTimeout(20 * 1000);
      conn.setConnectTimeout(15 * 000);
      conn.setDoInput(true);
      conn.setDoOutput(true);
      conn.setRequestProperty("Content-Type", "application/json;charset=utf-8");

      byte[] payload = data.getBytes("utf-8");
      conn.setFixedLengthStreamingMode(payload.length);

      conn.connect();

      out = new BufferedOutputStream(conn.getOutputStream());
      out.write(payload);
      out.flush();

      final int responseCode = conn.getResponseCode();
      final String responseMessage = conn.getResponseMessage();

      is = conn.getInputStream();

      if((responseCode / 100) == 2 || responseMessage.equals("OK")) {
         return readFromStream(is);
      }
   } catch (IOException e) {
      Log.e(TAG, "Error occurred while trying to connect to the server" + e.toString());
   } finally {
      try {
         if(out != null) {
             out.close();
         }

         if(is != null) {
            is.close();
         }
      } catch(IOException e) {
         Log.e(TAG, "Error occurred while trying to close data streams" + e.toString());
      }
   }
}
4

1 に答える 1

0

あなたの質問は意味がありません。接続プールがない場合、再利用する「既存のソケット」はありません。

于 2013-03-23T01:02:23.233 に答える