解析xml以查找java中的元素
我必须解析 xml 文档并获取其中的所有元素。我已经浏览了示例,其中他们只是提供元素名称。我不想手动给出元素名称。那么我怎样才能获得所有元素呢?我只有方法名称 getElementsByTagName(elementName)。还有其他方法获取元素吗?
<bookmap>
<booktitle>
<mainbooktitle>GMAT in a BOX </mainbooktitle>
</booktitle>
<frontmatter>
<notices href="Topics/ref_GMAT_box_notices.dita"/>
<topicref href="Topics/con_GMAT_box_instructions.dita"/>
</frontmatter>
<chapter href="comp_verbal.ditamap" format="ditamap"/>
<chapter href="comp_math.ditamap" format="ditamap"/>
</bookmap>
I have to parse an xml document and have to get all the elements in the same. I have gone through example, where they are just providing the element name. I do not want to give the element name manually. So how could I get all the elements? I am having only the method name getElementsByTagName(elementName). Is there any other method to get the elements?
<bookmap>
<booktitle>
<mainbooktitle>GMAT in a BOX </mainbooktitle>
</booktitle>
<frontmatter>
<notices href="Topics/ref_GMAT_box_notices.dita"/>
<topicref href="Topics/con_GMAT_box_instructions.dita"/>
</frontmatter>
<chapter href="comp_verbal.ditamap" format="ditamap"/>
<chapter href="comp_math.ditamap" format="ditamap"/>
</bookmap>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
匹配所有元素。
请参阅 javadoc。
matches all elements.
See javadocs.