0

以下のコードを使用して、ストリーミング モードでファイル (数十 MB) をアップロードしています。Util.copyStream(...);実際に( )を高速に実行した後org.apache.commons.net.io.Util、実際のアップロードがまだ (より長い時間) 行われているのはなぜですか? そのモードでのアップロードの進行状況をより適切に測定するにはどうすればよいですか (可能ですか) ?

/**
 * upload file (streaming)
 * @param endpoint
 */
private void doPut(String endpoint) {
    URL endpointUrl;
    HttpURLConnection connection;
    try {
        File videoFile = new File(videoPath);
        endpointUrl = new URL(endpoint);
        connection = (HttpURLConnection) endpointUrl.openConnection();
        connection.setRequestMethod("PUT");
        connection.setRequestProperty("Content-Length", videoFile.length()+"");
        connection.setRequestProperty("Content-Type", new MimetypesFileTypeMap().getContentType(videoFile));
        connection.setDoOutput(true);

        CopyStreamListener listener = new CopyStreamListener() {
            public void bytesTransferred(long totalBytesTransferred, int bytesTransferred, long streamSize) {
                System.out.printf("\r%-30S: %d / %d", "Sent", totalBytesTransferred, streamSize);
            }
            public void bytesTransferred(CopyStreamEvent event) {
            }
        };
        InputStream in = new FileInputStream(videoFile);
        OutputStream out = connection.getOutputStream();
        System.out.println("Uploading \""+videoFile.getAbsolutePath()+"\"... ");
        long c = Util.copyStream(in, out, Util.DEFAULT_COPY_BUFFER_SIZE, videoFile.length(), listener);
        System.out.printf("\n%-30S: %d\n", "Bytes sent", c);
        in.close();
        out.close();

        // at this point uploading is still taking place...

        // return code
        System.out.printf("\n%-30S: %d\n", "Response code", connection.getResponseCode());

    } catch (Exception e) {
        e.printStackTrace();
    }
}
4

1 に答える 1

0

見つかった解決策:connection.setFixedLengthStreamingMode((int) videoFile.length());トリックを行います。

于 2012-02-22T05:43:18.513 に答える