与 2005 相比,在 C# Windows 窗体中异步下载文件的最佳方法

发布于 2024-10-11 08:04:01 字数 212 浏览 3 评论 0原文

我正在 Dot.Net 中开发 Windows 应用程序(c#)。我需要通过编程方式从特定位置下载文件(例如,可以从部署在不同服务器中的网络应用程序)。我有两个选择来实现这一目标。 1. 使用Web Client 下载文件。 2. 使用BackGround工作线程下载文件。

请让我知道以编程方式下载 C# 文件的最佳方法。另外,请告诉我是否有其他方法可以实现此功能。

提前致谢

I am working on windows Application (c#) in Dot.Net. I need to download files from a specific location(for ex, can be from a webapplication which is deplyed in differnt server) through programatically. I have 2 options to achieve this.
1. Using Web Client to download the file.
2. Using BackGround worker thread to download the file.

Please let me know the best way to download the file in c# thro programatically. Also, let me know if any other way is possible to achieve this functionality.

Thanks in Advance

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

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

发布评论

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

评论(1

我纯我任性 2024-10-18 08:04:01

我会在这里使用 BackgroundWorker ,因为它有很好的进度报告,并且当工作线程完成时(在您的情况下,即下载完成时),它还会触发一个事件。这两个事件都应该可以从 GUI 线程轻松处理。

I would go with a BackgroundWorker here, because of it's nice progress reporting, and it also fires a event when the worker is completed, in your case that is when the download is complete. Both of these events should be easily handleable from your GUI thread.

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