遍历 DOM 树以获取(名称,值)属性对和叶节点
我想遍历 DOM 中的 XML 文件,以便检索所有(名称,值)对:
- 属性名称和值;
- 所有叶子节点名称及其文本内容;
以下面的 XML 文件为例:
<?xml version="1.0" encoding="UTF-8"?>
<title text="title1">
<comment id="comment1">
<data> abcd </data>
<data> efgh </data>
</comment>
<comment id="comment2">
<data> ijkl </data>
<data> mnop </data>
<data> qrst </data>
</comment>
</title>
我想要的名称值对是:
text=title1
id=comment1
data=abcd
data=efgh
id=commment2
data=ijkl
data=mnop
data=qrst
I want to traverse through an XML file in DOM for the purpose of retrieving as (name,value) pairs all:
- Attribute names and values;
- All leaf node names and their text content;
So given the following XML file as an example:
<?xml version="1.0" encoding="UTF-8"?>
<title text="title1">
<comment id="comment1">
<data> abcd </data>
<data> efgh </data>
</comment>
<comment id="comment2">
<data> ijkl </data>
<data> mnop </data>
<data> qrst </data>
</comment>
</title>
What I want as name value pairs are:
text=title1
id=comment1
data=abcd
data=efgh
id=commment2
data=ijkl
data=mnop
data=qrst
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更简单的解决方案可能是使用 XPath 提取所有名称值对,如下例所示。您还可以跳过 DOM 构造并直接在
InputSource
上调用评估。 XPath 表达式匹配所有属性和所有没有任何子节点的节点的并集。
An easier solution might be to use XPath to extract all name value pairs as in the following example. You could also skip the DOM construction and call evaluate directly on the
InputSource
. The XPath expressionmatches the union of all attributes and all nodes that don't have any child nodes.
怎么样:
好吧,所以你对此不满意,这样怎么样:
How about something like:
Okay, so you weren't happy with that, how about this: