从字节数组上传数据到 PHP 服务器时如何获取上传进度?
我通过将文件转换为字节数组来将图像文件从设备上传到 PHP 服务器。我正在我的应用程序中使用 android-async-http-1.3.1.jar 将文件上传到服务器。
http://loopj.com/android-async-http/
我想要的是展示在进度条上显示字节数组的字节数已上传。现在的问题是,在上传过程中我如何知道已上传了多少字节。需要有关想法/示例/代码问题的帮助。预先感谢各位。
I'm uploading image files from device to a PHP server by converting the file into byte array. I'm uploading files to server using android-async-http-1.3.1.jar in my app.
http://loopj.com/android-async-http/
What i want is to show on a progress bar how much bytes of the byte array has been uploaded. Now , the problem is , how can i get to know how much bytes has been uploaded while a uploading is on progress. Need help on the issue with ideas / example / codes. Thanks in advance guys.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后,我做到了。我已经使用 AsyncTask 类中的文件输入/输出流完成了此操作。下面,我给出了上传文件和文件的代码。显示进度条......
Finally , i have done it. I have done this using file-input/output-stream inside AsyncTask class. Below, i have given the code for uploading file & showing that in progress bar ......