我試圖構建一些數據的XML表示。我跟着其他例子,但我無法得到它的工作。我已經將代碼評論到這個基本位,但仍然沒有。此代碼編譯並運行正常,但結果輸出爲空。對dDoc.getDocumentElement()的調用返回null。我究竟做錯了什麼?構建XML文檔:我做錯了
請幫助我,堆棧溢出。你是我唯一的希望。
DocumentBuilderFactory dFactory = DocumentBuilderFactory.newInstance();
dFactory.setValidating(false);
DocumentBuilder dBuilder = dFactory.newDocumentBuilder();
Document dDoc = dBuilder.newDocument();
// The root document element.
Element pageDataElement = dDoc.createElement("page-data");
pageDataElement.appendChild(dDoc.createTextNode("Example Text."));
dDoc.appendChild(pageDataElement);
log.debug(dDoc.getTextContent());
dDoc沒有文本元素,但它有一個元素:) – willcodejavaforfood 2010-09-30 20:59:14