我正在使用 org.w3c.dom 来解析 XML 文件。然后我需要返回包含标签的特定节点的整个 XML,而不仅仅是标签的值。我使用 NodeList 是因为我需要计算文件中有多少条记录。但我还需要从头开始读取文件,然后将其写入新的 XML 文件。但是我当前的代码只打印节点的值,而不是节点本身。我难住了。
public static void main(String[] args) {
try {
File fXmlFile = new File (args[0]);
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
Document doc = dBuilder.parse(fXmlFile);
System.out.println("Root element :" + doc.getDocumentElement().getNodeName());
NodeList listOfRecords = doc.getElementsByTagName("record");
int totalRecords = listOfRecords.getLength();
System.out.println("Total number of records : " + totalRecords);
int amountToSplice = queryUser();
for (int i = 0; i < amountToSplice; i++) {
String stringNode = listOfRecords.item(i).getTextContent();
System.out.println(stringNode);
}
} catch (Exception e) {
e.printStackTrace();
}
}