解析我有下面的XMLXML命名空間
<?xml version="1.0"?>
<response status="200">
<ns3:output xmlns="http://xmlns.oracle.com/apps/fnd/wf/worklist/service/rt/artifacts/notificationdetails/"
xmlns:ns2="http://xmlns.oracle.com/apps/fnd/wf/worklist/service/rt/artifacts/worklistmgmt/"
xmlns:ns3="http://xmlns.oracle.com/apps/fnd/wf/worklist/service/rt/artifacts/worklist/">
<ns2:notifications count="140552">
<ns2:notification>
<ns2:NotificationId>4687807</ns2:NotificationId>
</ns2:notification>
</ns2:notifications>
</ns3:output>
</response>
我需要解析這一點,並獲得每行的NotificationId值。 我嘗試使用下面的代碼以獲取列表,但它返回0。
notificationrows = xmlDoc.documentElement.selectNodes("/ns3:output/ns2:notifications");
誰能告訴如何實現這一目標?
你在用什麼語言? – SLaks