我有点坚持使用 XPath 和/或 Java。我有如下 XML 文档结构:
<document>
<text>
<headline>This is the text's headline</headline>
This is the text.
</text>
</document>
我需要的是这个:
<document>
<text>
<headline>This is the text's headline</headline>
<w>This</w>
<w>is</w>
<w>the</w>
<w>text</w>
<w>.</w>
</text>
</document>
我怎么能改变文本节点的文本内容,同时保持标题节点不变?!(我正在使用 org.jdom2.xpath。)
鲍勃