使用 Apache Commons FTPClient 监控进度

发布于 2024-11-05 01:43:06 字数 185 浏览 4 评论 0原文

我有一个简单的 FTPClient 类,可以从 FTP 服务器下载文件。我还需要监控下载进度,但我不知道如何监控。实际下载文件的功能是一个简单的函数

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

我如何监控下载进度?

谢谢, 阿农。

I have a simple FTPClient class that downloads files form an FTP server. I also need to monitor progress of the download, but I do not see a way how. The actually download files function is a simple function of

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

How can I monitor the download progress?

Thanks,
Anon.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

是你 2024-11-12 01:43:06

您需要一个 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 程序)可以取得进展,但这都是特定于应用程序的细节。

You need a CountingOutputStream (as seen on Commons IO: http://commons.apache.org/io/api-release/index.html). You create one of those, wrap your destination OutputStream in it, and then you can check the ByteCount on demand to monitor the download progress..

EDIT: You'd do something like this:

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();

If your program is multithreaded you might want to monitor the progress using a separate thread (for example, for a GUI program), but that's all application-specific detail.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文