我正在尝试编写一个必须如下所示的XML元素标记:
<case type="" player=""/>
我的代码是:
doc.writeStartElement("case");
doc.writeAttribute("type", type);
doc.writeAttribute("player", "");
doc.writeEndElement();
但是,正如我所料,最后会添加一个结束标记,所以它看起来像这样:
<case type="" player=""></case>
我正在尝试编写一个自闭元素标签,但无法找到。 有谁知道怎么做?