上传图片到服务器
作为我的项目的一部分,我需要将图像上传到服务器。在服务器部分,我有一个 Web 服务,它将接受字节数组并转换为图像。在我的客户端部分(Android + ksoap2)中,我使用 Base64 编码将图像转换为 byte[] 数组。但我无法将字节数组传递给网络服务。它显示出一些序列化问题。 我如何使用 ksoap2 将字节数组传递到 Web 服务。请有人帮助我......
As part of my project I need to upload an image to the server. In the server part I have a web service that will accept byte array and converting in to image. In my client part(Android + ksoap2) I converted the image to byte[] array using Base64 encoding. But I could not pass the byte array to the web service. It is showing some serialization problem.
How can I pass the byte array to the web service using ksoap2.Somebody please help me.....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用此代码
使用
MarshalBase64
序列化字节数组请参阅 使用 ksoap android 序列化字节数组
Try with this code
Serialize byte array using
MarshalBase64
Refer Serialize byte array using ksoap android