好的,在有人问我为什么使用DOM解析器而不是SAX用于XML文件之前,原因很简单。我觉得DOM比SAX更容易使用,因为我的XML文件通常非常小,因此它不需要很多内存来通过SAX解析它,而不是SAX是基于事件的XML Parser并且它解析XML文件一步一步,适用于大型XML文件。
所以现在我有这个示例XML文件:
<?xml version="1.0"?>
<schedule id="backup" duration="86400">
<datapoint time="0" speed="1" speednoise=".5" concurrency="8" concurrencynoise="1" interval="300" intervalnoise="300"/> <!-- 12am -->
<datapoint time="7200" speed="1" speednoise=".5" concurrency="8" concurrencynoise="1" interval="300" intervalnoise="300"/> <!-- 2am -->
<datapoint time="7201" speed="1" speednoise=".5" concurrency="0" concurrencynoise="0" interval="300" intervalnoise="300"/> <!-- 2:00:01am -->
<datapoint time="86399" speed="1" speednoise=".5" concurrency="0" concurrencynoise="0" interval="10" intervalnoise="0"/> <!-- 11:59:59pm -->
</schedule>
我的代码:
try {
//this is the text file that i want to write into
BufferedWriter writer = new BufferedWriter(new FileWriter("new_backup.txt"));
//this is the file that i want to read from
File fXmlFile = new File("backup.xml");
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
Document doc = dBuilder.parse(fXmlFile);
doc.getDocumentElement().normalize();
NodeList nList = doc.getElementsByTagName("datapoint");
for (int i = 0; i < nList.getLength(); i++) {
Node node = nList.item(i);
if (node.getNodeType() == Node.ELEMENT_NODE) {
Element eElement = (Element) node;
System.out.println("Time : " + eElement.getAttribute("time"));
System.out.println("Speed : " + eElement.getAttribute("speed"));
System.out.println("SpeedNoise : " + eElement.getAttribute("speednoise"));
System.out.println("Concurrency : " + eElement.getAttribute("concurrency"));
System.out.println("ConcurrencyNiose : " + eElement.getAttribute("concurrencynoise"));
System.out.println("Interval : " + eElement.getAttribute("interval"));
System.out.println("IntervalNoise : " + eElement.getAttribute("intervalnoise"));
if (eElement.hasChildNodes()) {
NodeList nl = node.getChildNodes();
for (int j = 0; j < nl.getLength(); j++) {
Node nd = nl.item(j);
String name = nd.getTextContent();
if (name != null && !name.trim().equals("")) {
System.out.print(name.trim() + ",");
//System.out.print(" ");
writer.write(nd.getTextContent().trim() + " ");
}
}
System.out.println("");
writer.write("\n");
}
}
}
writer.close();
} catch (Exception e) {
e.printStackTrace();
}
}
@SuppressWarnings("unused")
private static String getTagValue(String sTag, Element eElement) {
NodeList nlList = eElement.getElementsByTagName(sTag).item(0).getChildNodes();
Node nValue = (Node) nlList.item(0);
return nValue.getNodeValue();
}
}
Output: An empty text file.
我在这里做错了什么? Isn的DOM解析器应该在XML文件的节点上工作,其中元素是&#34; datapoint&#34; ?当我将输出打印到系统控制台时,它返回我的结果,但是当我把它放在文本文件中时它是空的。我是这种解析器的新手,我正在为学校的一个项目做这件事。
Console Output: Time : 0
Speed : 1
SpeedNoise : .5
Concurrency : 8
ConcurrencyNiose : 1
Interval : 300
IntervalNoise : 300
Time : 7200
Speed : 1
SpeedNoise : .5
Concurrency : 8
ConcurrencyNiose : 1
Interval : 300
IntervalNoise : 300
Time : 7201
Speed : 1
SpeedNoise : .5
Concurrency : 0
ConcurrencyNiose : 0
Interval : 300
IntervalNoise : 300
Time : 86399
Speed : 1
SpeedNoise : .5
Concurrency : 0
ConcurrencyNiose : 0
Interval : 10
IntervalNoise : 0
但它并没有像我想的那样保存到文本文件中。
答案 0 :(得分:0)
您的外部for
循环正在迭代<datapoint>
个元素。元素没有任何子节点(<datapoint/>
是一个空元素),因此永远不会输入if
语句,这意味着永远不会写入writer
。
您可能想要为您的数据点元素迭代属性。由于属性顺序可能是任意的,因此迭代不是最佳的,因此您应该按名称获取它们,就像您在print语句中那样。
答案 1 :(得分:-2)
请在writer.flush();
writer.close();
close()通常也会调用flush(),但我总是调用writer.flush();
。
原因在于,在某些JDK实现中,作为关闭的一部分被刷新抛出的任何异常都被吞噬了。这是相关的主题:difference between flush and close function in case of filewriter in java。向下滚动到@Jon Skeet回答