从 Web 服务解析 xml 时出错
我的 xml 文件作为 result.getProperty(0)
中的响应。
代码如下:
SoapObject result=(SoapObject)envelope.bodyIn;
System.out.println("value of result " + result);
如何将 result.getProperty(0)
中的 xml 存储到我的 sdcard/任何其他位置,以便我可以使用 SAXParser 解析它?
问候,
斯内哈
I have my xml file as a response in result.getProperty(0)
.
The code is as follows:
SoapObject result=(SoapObject)envelope.bodyIn;
System.out.println("value of result " + result);
How can I store this xml in result.getProperty(0)
into my sdcard/any other location so that I can parse it using SAXParser?
Regards,
sneha
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
getProperty(int)
方法返回一个对象。如果此对象是字符串,则 SAXParser 支持从字符串解析 XML: 链接The
getProperty(int)
-method returns an Object. If this Object is a String, the SAXParser supports parsing XML from a String: Link我通过以下方式解决了这个问题:
然后我使用 SAXParser 并解析 xml。
谢谢,
斯内哈
I solved the problem in the following way :
Then I use SAXParser and parse the xml.
Thanks,
Sneha