从 xml 格式的响应中读取数据
我正在开发一个应用程序,因为我已经读取了将从 respose 中以 xml 格式获取的数据。那么如何实现呢。
我这边没有开发网络应用程序。但是检索一个 url,我将得到一个 xml 数据作为响应。
I am developing an application, in that I have read data which I will get from respose in xml format. So how can implement it.
I am not developing web app in my side. But retrieving an url and I will get an xml data as response.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
创建一个类 XMLfunctions
在您的活动中
然后您可以将数据放入列表中
Create a class XMLfunctions
in your activity
Then you can put the data in the list
您可以使用内置的 DOM 解析器。
链接: http://developer.android.com/reference/javax/xml /parsers/DocumentBuilder.html
教程:http://www.ibm.com/developerworks/opensource/library/x-android/#list9
You can use the built-in DOM parser.
Link: http://developer.android.com/reference/javax/xml/parsers/DocumentBuilder.html
Tutorial: http://www.ibm.com/developerworks/opensource/library/x-android/#list9
如需舒适的解析,请查看
此处
For a comfortable parsing look at
here