通过 KSOAP 发送/接收图像或 XML 文件
这听起来可能很愚蠢,但我想知道是否可以发送和接收。也许是 kSOAP 的图像/XML 文件?
it may sounds stupid but i would like to know whether is it possible send and receive. maybe image/XML file vai kSOAP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我已经能够使用 kSOAP2 传输 WebRowSet XML 文档。
http://roderickbarnes.com/blog/droid-chronicles-web -services-handling-complex-parameters
在此示例中,我将 XML 文档从 Web 服务发送到基于 Android 的客户端。我希望这对兄弟有帮助。
I have been able to transmit WebRowSet XML documents using kSOAP2.
http://roderickbarnes.com/blog/droid-chronicles-web-services-handling-complex-parameters
In this example I am sending an XML document from the web service to my Android based client. I hope this helps bro.
可以通过以下步骤通过 ksoap 发送图像:
Image
转换为byte[]
byte[]
作为属性new MarshalBase64().register(envelope);
byte[]
作为参数的 Web 服务然后接收您可以转换的消息这已将
byte[]
接收到图像文件中。It is possible to send image via ksoap by following steps:
Image
intobyte[]
byte[]
of the image as propertynew MarshalBase64().register(envelope);
byte[]
as parameterThen receiving the message you can convert the receieved
byte[]
into image file.