使用Apache Commons FTPClient监控进度

时间:2011-05-03 21:19:43

标签: java ftp download apache-commons ftp-client

我有一个简单的FTPClient类,可以从FTP服务器下载文件。我还需要监控下载的进度,但我没有看到怎样的方式。实际下载文件功能是

的简单功能

(your ftp client name).retrieveFile(arg1,arg2);

如何监控下载进度?

谢谢, 匿名。

1 个答案:

答案 0 :(得分:18)

你需要一个CountingOutputStream(如Commons IO:http://commons.apache.org/io/api-release/index.html所示)。您创建其中一个,将目标OutputStream包装在其中,然后您可以按需检查ByteCount以监控下载进度。

编辑:你会做这样的事情:

int size;
String remote, local;

// do some work to initialize size, remote and local file path
// before saving remoteSource to local
OutputStream output = new FileOutputStream(local);
CountingOutputStream cos = new CountingOutputStream(output){
    protected void beforeWrite(int n){
        super.beforeWrite(n);

        System.err.println("Downloaded "+getCount() + "/" + size);
    }
};
ftp.retrieveFile(remote, cos);

output.close();

如果您的程序是多线程的,您可能希望使用单独的线程监视进度(例如,对于GUI程序),但这是所有特定于应用程序的详细信息。