Android 相当于 .Net WebClient.uploadFileAsync
我希望在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 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 usingHttpClient
or something.