如何使用 jdom 检测 xml 文档中的空标签
How to detect an empty tag in xml document using jdom
我正在使用 JDOM 解析一个 xml 文档,它可能是这样的:
<person>
<name id="blah"> xyz </name>
<friends />
</person>
我正在尝试找出检测空标签(例如 <friends />
或 <friends></friends>
的正确方法
会。
为 <friends>
标签获取 Element
,对于空元素,getChildren()
方法应该 return 一个空列表。
我正在使用 JDOM 解析一个 xml 文档,它可能是这样的:
<person>
<name id="blah"> xyz </name>
<friends />
</person>
我正在尝试找出检测空标签(例如 <friends />
或 <friends></friends>
会。
为 <friends>
标签获取 Element
,对于空元素,getChildren()
方法应该 return 一个空列表。