1

request.getContentLength()サーバークライアントのJSPページでコンテンツサイズを取得したい。しかし、request.getContentLength()は常に-1を返しますが、なぜですか?

Androidスニペットコード:

URL uri = new URL(actionUrl);
HttpURLConnection conn = (HttpURLConnection) uri.openConnection();
//conn.setChunkedStreamingMode(100);
conn.setConnectTimeout(setTimeOut>0?setTimeOut:timeoutConnection);
conn.setReadTimeout(setTimeOut>0?setTimeOut:timeoutConnection);  
conn.setDoInput(true);
conn.setDoOutput(true);
conn.setUseCaches(false);
conn.setRequestMethod("POST");
conn.setRequestProperty("Connection", "keep-alive");

//conn.setRequestProperty("content-length", "10");
//conn.addRequestProperty("content-length", "20");
conn.setFixedLengthStreamingMode(30);

conn.setRequestProperty("Charsert", ENCODING);
conn.setRequestProperty("Content-Type", "multipart/form-data"
                + ";boundary=" + java.util.UUID.randomUUID().toString());
conn.connect();
4

1 に答える 1

5

conn.setChunkedStreamingMode(100)を使用しているため、コンテンツの長さが事前に不明な場合に、100バイトのチャンクでチャンク転送エンコーディングを効果的に有効にできます。

リクエストの本文で送信するコンテンツの長さが事前にわかっている場合は、conn.setFixedLengthStreamingMode(int len)を使用します。

于 2012-04-12T10:28:33.350 に答える