1
我正在解析一個XMl文件並使用內容在Java中使用XPath處理數據設置,可能會出現這樣的情況:我們可以將空標記作爲應該處理的輸入。節點對象 - 爲空節點對象分配值
但是當我試圖爲空節點對象與setNodeValue和setTextContent方法仍然得到同樣的問題設定值。我們有沒有其他選項可以爲空節點對象設置值。
**//Code Snippet:**
Node title = XPathAPI.selectSingleNode("Input Node", "title/text()");
// *Here if there is no input title tag, then the title variable would be null*
title.setNodeValue("Value to set on the null node");