2

ファイルの代わりに FileOutputStream に書き込むように、プログレスバーを使用してダウンロード サンプルから koush のコードを変更しようとしていますが、Eclipse で次のエラーが表示されます。

メソッド progressHandler(new ProgressCallback(){}) はタイプ ResponseFuture に対して未定義です

コードは次のとおりです。

File file = new File(DownloadPath, uri.getLastPathSegment());
FileOutputStream fos = null;
try {
    fos = new FileOutputStream(file);
} catch (FileNotFoundException e1) {
    // TODO Auto-generated catch block
}

Future<FileOutputStream> downloading = Ion.with(getApplicationContext())
    .load(uri)
    .write(fos)
    .progressHandler(new ProgressCallback() { 
        @Override
        public void onProgress(int downloaded, int total) {
            // inform the progress bar of updates in progress
        }
    })
    .setCallback(new FutureCallback<FileOutputStream>() {
       @Override
        public void onCompleted(Exception e, FileOutputStream file) {
            // download done...
            // do stuff with the File or error
        }
    });     
4

1 に答える 1

7

順番を間違えたようです。これを試してください:

Future<FileOutputStream> downloading = Ion.with(getApplicationContext())
    .load("http://example.com/test.txt")
    .progressHandler(new ProgressCallback() { 
        @Override
        public void onProgress(int downloaded, int total) {
            // inform the progress bar of updates in progress
        }
    })
    .write(fos)
    .setCallback(new FutureCallback<FileOutputStream>() {
       @Override
        public void onCompleted(Exception e, FileOutputStream file) {
            // download done...
            // do stuff with the File or error
        }
    });
于 2014-05-22T10:03:10.603 に答える