我可以在Jdom api中找到任何创建自关闭xml标签的函数,例如< selfClosingTag />下面.
例如,我需要创建以下内容:
<parentTag>
<selfClosingTag />
<firstChild>...... </firstChild>
<secondChild>...... </secondChild>
</parentTag>
有人可以告诉我怎么样.请告诉我,我不应该这样做,因为mathml文档中需要这种自动关闭标记.
谢谢,
Chepukha
解决方法:
您创建的任何元素(不添加任何子节点)都将为空.空元素可以表示为< element />或< element>< / element>.哪一个真的不重要.