Android 相当于 .Net WebClient.uploadFileAsync

发布于 2024-10-19 23:04:03 字数 237 浏览 1 评论 0原文

我希望在 Android 上异步发送文件。使用 C#,我会使用 WebClient.uploadFileAsync。我发现 Java 等效...AsyncHttpClient。但是我发现这个不能在Android上使用。我希望能够获取上传进度。更重要的是,虽然我不想将整个文件加载到内存中;这些文件是大图像,很难一次性上传。

所以我的问题很简单,Android 是否有 .Net 的 WebClient.uploadFileAsnyc 的替代品?

I am looking to send a file on android asyncronously. Using c#, I would use WebClient.uploadFileAsync. I found the Java equivelent... AsyncHttpClient. However, I find this cannot be used in Android. I want to be able to get the progress of the upload. More importantly though I dont want to load the whole file in memory; the files are large images and they have trouble uploading all at once.

So my question is simple, is there an Android alternative to .Net's WebClient.uploadFileAsnyc?

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

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

发布评论

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

评论(1

橘亓 2024-10-26 23:04:03

在 Android 2.3 及更高版本中,使用 DownloadManager。在 Android 2.2 或更低版本中,您需要使用 HttpClient 或其他东西自己进行更多的滚动。

In Android 2.3 and higher, use DownloadManager. In Android 2.2 or lower, you would need to roll it more yourself using HttpClient or something.

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