2

次のコードでexeファイルをダウンロードしようとしていますが、ファイルの30%しかダウンロードされない理由はありますか?少なくとも、例外はスローされません。

私のメインメソッドは次のようになります。newDownloadWorker()。execute();

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;

import javax.swing.SwingWorker;

public final class DownloadWorker extends SwingWorker<Object, Object> {

    @Override
    protected Object doInBackground() throws Exception {
        BufferedInputStream in = null;
        BufferedOutputStream out = null;

        try {
            URL url = new URL("http://download.piriform.com/ccsetup320.exe");
            URLConnection conn = url.openConnection();
            conn.connect();

            int fileLength = conn.getContentLength();

            in = new BufferedInputStream(url.openStream());
            out = new BufferedOutputStream(new FileOutputStream("ccsetup320.exe"));

            byte[] buffer = new byte[4096];
            long total = 0;
            int bytesRead = 0;
            while ( (bytesRead = in.read(buffer)) != -1 ) {
                total += bytesRead;
                System.out.println((int) (total * 100 / fileLength));
                out.write(buffer, 0, bytesRead);
            }
        } catch ( Exception e ) {
            e.printStackTrace();
        } finally {
            if ( out != null ) {
                out.flush();
                out.close();
            }
            if ( in != null ) {
                in.close();
            }
        }

        return null;
    }

    @Override
    protected void done() {

    }

}

ありがとう。

4

2 に答える 2

2

Java 7 がインストールされているように見える Java NIO を使用してみましたか:

import java.io.FileOutputStream;
import java.io.IOException;
import java.net.URL;
import java.nio.channels.Channels;
import java.nio.channels.ReadableByteChannel;


public class TestApp {

    public static void main(String[] args) {
        try {
            URL url = new URL("http://download.piriform.com/ccsetup320.exe");
            ReadableByteChannel rbc = Channels.newChannel(url.openStream());
            FileOutputStream fos = new FileOutputStream("c:/ccsetup320.exe");
            fos.getChannel().transferFrom(rbc, 0, 1 << 24);
        } catch (IOException ex) {
            ex.printStackTrace();
        }
    }

}

上記のコードはテスト済みで、問題なく動作します。ここにある同様の質問から取得しまし。NIO によってコーディングがいかに簡単になるかがわかります :)

編集:

swingworker を使用するようにコードを更新したところ、問題なくファイルがダウンロードされます。

import java.io.FileOutputStream;
import java.io.IOException;
import java.net.URL;
import java.nio.channels.Channels;
import java.nio.channels.ReadableByteChannel;
import javax.swing.SwingWorker;

public class JavaApplication174 {

    public static void main(String[] args) {
        SwingWorker worker = new SwingWorker() {

            @Override
            protected Object doInBackground() throws Exception {

                try {
                    URL google = new URL("http://download.piriform.com/ccsetup320.exe");
                    ReadableByteChannel rbc = Channels.newChannel(google.openStream());
                    FileOutputStream fos = new FileOutputStream("c:/ccsetup320.exe");
                    fos.getChannel().transferFrom(rbc, 0, 1 << 24);
                } catch (IOException ex) {
                    ex.printStackTrace();
                }
                return this;
            }
        };
        worker.run();
    }
}

編集2:

execute()代わりにワーカーインスタンスの使用を呼び出すとrun()、私にとってはうまくいきます!

于 2012-07-01T21:42:37.997 に答える
0

-1が書き込まれていないため(ファイルの終わりを示す最後のバイトです)、エラーはこのループにあると思います:

        while ( (bytesRead = in.read(buffer)) != -1 ) {
            total += bytesRead;
            System.out.println((int) (total * 100 / fileLength));
            out.write(buffer, 0, bytesRead);
        }

次のように変更します。

        do {
            bytesRead = in.read(buffer);
            total += bytesRead;
            System.out.println((int) (total * 100 / fileLength));
            out.write(buffer, 0, bytesRead);
        }while(bytesRead!=-1);
于 2012-07-02T10:52:19.620 に答える