安卓网络服务
我有一个关于肥皂网络服务的问题。我需要将一些字符串值和一张图像从我的 Android 应用程序传递到 Web 服务。我正在使用 Ksoap2 客户端。我可以传递字符串值。我如何传递图像?有人可以帮我吗?
I have one question regarding soap web service. I need to pass some string values and one image to the the webservice from my Android appication. I am using Ksoap2 client. I could pass string values. How I can pass image? Can anybody please help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将图像编码为 png(如果不是 png 文件,则使用 Bitmap.compress),然后使用 base-64。
You can encode the image as a png (using
Bitmap.compress
if it isn't a png file to start with) and then base-64.