我想用jdom重写xml文件,我在goodle中得到了一些例子,他们使用setTextContent在xml标签中追加值。但android不支持node.setTextContent。取而代之的是访问setTextContent的关键词。如果有人这样做,请告诉我。
答案 0 :(得分:0)
org.w3c.dom.Element中没有xxxTextContent()方法。
文本节点就像xml中的任何其他节点一样。您需要找到元素的Text节点子节点,并使用setNodeValue()。
这样的事情:
node.getFirstChild().setNodeValue(newValue);