3

私はJavaが初めてで、HTTPURLConnectionを使用してAndroidで複数の投稿リクエストを送信しているときに上記のエラーが発生しています。sendMessage および recvMessage メソッドが必要な HTTPTransport クラスを作成しました。

public class HTTPTransport
{
   private HttpURLConnection connection;

   public HTTPTransport()
   {
      URL url = new URL("http://test.com");

      connection = (HttpURLConnection) url.openConnection(); 
      connection.setRequestMethod("POST"); 
      connection.setDoInput(true); 
      connection.setDoOutput(true); 
      connection.setRequestProperty("Content-Type", "application/octet-stream");
      connection.setRequestProperty("Accept-Encoding", "gzip");
      connection.setRequestProperty("Connection", "Keep-Alive");
   }

   public void sendMessage(byte[] msgBuffer, long size)
   {
      try
      {
         DataOutputStream dos = new DataOutputStream(connection.getOutputStream());
         dos.write(msgBuffer, 0, (int)size); 
         dos.flush();
         dos.close();

         dos.close();
      }
      catch( IOException e )
      {
         // This exception gets triggered with the message mentioned in the title.
         Log.e(TAG, "IOException: " + e.toString());
      }
   }
   public byte[] recvMessage()
   {

      int readBufLen = 1024;

      byte[] buffer = new byte[readBufLen];

      int len = 0;
      FileOutputStream fos = new FileOutputStream(new File("/sdcard/output.raw"));

      DataInputStream dis = new DataInputStream(connection.getInputStream());
      while((len = dis.read(buffer, 0, readBufLen)) > 0) 
      {
         Log.d(TAG, "Len of recd bytes " + len + ", Byte 0 = " + buffer[0]);
         //Save response to a file
         fos.write(buffer, 0, len);
      }

      fos.close();
      dis.close();
      return RecdMessage;      
   }
}

sendMessage と recvMessage を使用して、最初のメッセージを正常に送信できます。2 番目のものを送信しようとすると、次のエラーが表示されます: IOException: java.net.ProtocolException: can't open OutputStream after reading from an inputStream

このクラスの書き方を教えてください。

ありがとう!

4

2 に答える 2

0

の実装でHTTPUrlConnection は、この方法で接続を再利用することはできませんHttpConnectionManagerKeep-Aliveを好きなように利用するには、を使用する必要があると思います。

于 2011-01-12T21:32:13.737 に答える
0

リクエストごとに新しい HttpURLConnection を使用する必要があります。TCP 接続自体は、バックグラウンドでプールされます。自分でやろうとしないでください。

于 2015-08-16T01:21:48.060 に答える