我正在使用Rockwell FTPC ...我有一个xml,我想解析它从中获取数据。
这是我的xml:
<part>
<partlist>part001</partlist>
<partlist>part002</partlist>
<partlist>part003</partlist>
</part>
我正在编写以下代码来获取数据。
filePath = openFileDialog()
doc=readDocument(filePath)
node=selectSingleNode( doc,"/PartList")
nodeList = selectNodeList( node, "Part")
nodePartNo=selectNodeList(doc,".//PARTNO")
// println(nodePartNo.value.toString())
// println(nodeList.item(0).pop())
println("The node list length is: " +nodeList.getLength())
帮我修改节点值。
感谢。
答案 0 :(得分:0)
请使用getTextContent()作为项目(i).getTextContent()
这应该可以解决问题