我试图让它返回带有属性的空根元素但是得到[#document:null]输出。我绝对需要为root提供一个子元素吗?
String docDate = "1";
String docNumber = "1";
String orderType = "1";
String transactionType = "1";
try {
DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder docBuilder = docFactory.newDocumentBuilder();
Document doc = docBuilder.newDocument();
Element rootElement = doc.createElement("InvoiceRequest");
Attr attr = doc.createAttribute("documentDate");
attr.setValue(docDate);
rootElement.setAttributeNode(attr);
Attr attr2 = doc.createAttribute("documentNumber");
attr2.setValue(docNumber);
rootElement.setAttributeNode(attr2);
Attr attr3 = doc.createAttribute("orderType");
attr3.setValue(orderType);
rootElement.setAttributeNode(attr3);
Attr attr4 = doc.createAttribute("transactionType");
attr4.setValue(transactionType);
rootElement.setAttributeNode(attr4);
doc.appendChild(rootElement);
System.out.println("doc: " + doc.toString());
} catch (Exception e) {
e.printStackTrace();
}
答案 0 :(得分:1)
DocumentImpl
是NodeImpl
的子类,其toString()
实现内容如下:
public String toString() {
return "["+getNodeName()+": "+getNodeValue()+"]";
}
getNodeName()
返回#document
(这很有意义) - 这是在CoreDocumentImpl
中定义的。 getNodeValue()
返回null
,因为它未被覆盖。 Node
文档中甚至提到了这种行为:
如果特定nodeType没有明显的这些属性映射(例如,Element的nodeValue或Comment的属性),则返回null。
由于您的根元素未包含在getNodeName()
或getNodeValue()
中,因此它可能看起来是空的。但没有什么可担心的。您需要other methods将文档呈现为XML字符串。
答案 1 :(得分:0)
你在这里使用的toString()
方法除了返回之外什么都不做: -
"["+getNodeName()+": "+getNodeValue()+"]"
所以相应地你得到: -
[#document: null] //nodeName as document and null nodevalue
不要担心它&继续进行进一步处理,您将获得预期的结果,而不是NPE
。