从android中的网络数据库解析xml
在我的应用程序中,当我单击按钮时,我想显示一个存储在 url 数据库中的 xml 文件,如何做到这一点,请给我一个例子。
in my app when i click a button, i want to show an xml file which is been stored in a database of an url, how to do this, pls give me an example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
让服务器端脚本获取服务器上的数据并将其作为 XML 返回。然后下载该页面并将其加载到您的应用程序中。
使用此代码,您可以从在线数据库获取 xml 文件,并将其解析为 Android 中的 xml 文档。
这是一个简短的脚本,应该下载网页并将其作为字符串返回。
这是一个简单的 DOM 解析器,用于将字符串解析为 Document 对象。
Have a server side script get the data on the server and return it as XML. Then download the page and load it into your application.
Using this code you can get an xml file from an online database and parse it as a xml Document in Android.
This is a short script that should download a webpage and return it as a string
This is a simple DOM parser to parse a string into a Document object.