从 Web 服务解析 xml 时出错

发布于 2024-11-08 05:05:45 字数 318 浏览 4 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

倾听心声的旋律 2024-11-15 05:05:45

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

灯下孤影 2024-11-15 05:05:45

我通过以下方式解决了这个问题:

xr.parse(new InputSource(new ByteArrayInputStream(result.getProperty(0).toString().getBytes())));  

然后我使用 SAXParser 并解析 xml。

谢谢,
斯内哈

I solved the problem in the following way :

xr.parse(new InputSource(new ByteArrayInputStream(result.getProperty(0).toString().getBytes())));  

Then I use SAXParser and parse the xml.

Thanks,
Sneha

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文