简单的任务:撰写要素二:
String nsURI = "http://example.com/";
XMLOutputFactory outF = XMLOutputFactory.newFactory();
outF.setProperty(XMLOutputFactory.IS_REPAIRING_NAMESPACES, true);
XMLStreamWriter out = outF.createXMLStreamWriter(System.out);
out.writeStartElement(XMLConstants.DEFAULT_NS_PREFIX, "element", nsURI);
out.writeAttribute("attribute", "value");
out.writeAttribute("attribute2", "value");
out.writeEndElement();
out.close();
森林问题答案:
<element xmlns="http://example.com/" attribute="value" attribute2="value"></element>
JDK 6 回答:
<zdef-1905523464:element xmlns="" xmlns:zdef-1905523464="http://example.com/" attribute="value" attribute2="value"></zdef-1905523464:element>
什么?
此外,如果在要素上添加一个先决条件:
out.writeStartElement("ns", "element", nsURI);
JDK 6不再试图排放xmlns=”
<ns:element xmlns:ns="http://example.com/" attribute="value" attribute2="value"></ns:element>
如果我们放弃归属感(即只有一方)的话,它就会被罚款。
我确信,这是第6号联合公报的ug。 什么时候? 谁会建议围绕这项工作使两个图书馆(和任何其他图书馆)感到欣慰? 如果我能够帮助的话,我不想要求ox。