Android 中的解析
我想做 xml 解析,在我的 android 应用程序中查找“湿度”、“当前温度”和温度的“图标”(太阳)。
有人可以帮我吗?
I want to do xml parsing of finding the "Humidity", "Current Temperature" and the "Icon" of the temperature(a SUN) in my android application.
Can anybody please help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这实际上与 Android 平台无关,因为 Android 支持标准 JAXP(用于 XML 处理的 Java API)。因此您可以同时使用 SAX 或 DOM 来处理您的文件。
有关 Java 中 XML 处理的全面信息,您可以查看本书。
有关更快的 Java XML 处理教程这里有一个示例(有数千个)。
This is not really related to Android platform, since Android supports standard JAXP (Java API for XML Processing). So you can use both SAX or DOM to process your file.
For comprehensive information about XML processing in Java you could take a look at this book.
For a quicker Java XML processing tutorial here you have an example (there are thousands).