如何在android中解析2个xml文件
您好,我是一名新开发人员,我想知道如何解析项目中的两个 xml 文件。 我有 2 个 xml 文件。第一个如下 下
<?xml version="1.0"?>
<X>
<Y>
<Z>
A
</Z>
<packs>
<pack>
<packname>B</packname>
</pack>
</packs>
</Y>
</X>
一个 xml 文件如下所示
<s>
<t>
<question>abc</question>
<question>def</question>
<question>ghi</question>
</t>
</s>
第一个 XML 文件对我有用。当我触摸 A 时,它会移至 B。现在,当我触摸 B 时,我想单独显示第一个问题,即 abc,可以完成吗,它对我不起作用,
请告诉我如何从一个 xml 文件移动到另一个xml 文件
任何人都可以用示例代码解释这一点...
我应该在哪里存储要解析的 2 个文件...我尝试将其存储在资源中的原始文件夹中。
hi i am a new developer and i want know how to do parsing of two xml files in a project.
I have 2 xml files. the first one is as follows
<?xml version="1.0"?>
<X>
<Y>
<Z>
A
</Z>
<packs>
<pack>
<packname>B</packname>
</pack>
</packs>
</Y>
</X>
The next xml files looks as follows
<s>
<t>
<question>abc</question>
<question>def</question>
<question>ghi</question>
</t>
</s>
The first XML file works for me. When i touch A it moves over to B. Now when i touch B i want to show the first question alone ie abc, Can it be done, it is not working for me
pls tell me how to move from one xml file to the other xml file
can anyone explain this with a sample codes....
Where should i store the 2 files to be parsed... I have tried storing it in raw folder in Resources.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下是一些可用于 Android 的 XML 解析器 的概述,包括一些示例。
这取决于您的应用程序需要,您希望将 xml 文件存储在何处(来自 Web 服务调用的 xml 会暂时保留在内存中)。像xml这样的文件一般应该存放在Raw文件夹中。
Here is an overview of some XML parsers available for Android including some examples.
It depends on your application needs where you want to store your xml file (xml from a web service call mey remain temporarily in memory). Files like xml should be generally stores in the Raw folder.
您可以使用 SAX Parser 或 Pull Parser 来解析 xml。以下是一些帮助链接:
SAXParser
示例
You can use SAX Parser or Pull Parser to parse the xml. Following are some links for help:
SAXParser
Example