0

我正在研究 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())

帮助我检索节点值。

谢谢。

4

1 回答 1

0

请使用 getTextContent() 作为 item(i).getTextContent()

这应该可以解决问题

于 2013-03-08T04:54:05.487 回答