我有单行xml文件(没有缩进和新行),如下所示
<?xml version="1.0" encoding="UTF-8"?>
<Document xmlns="urn:iso:std:iso:20022:tech:xsd:camt.054.001.03"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:iso:std:iso:20022:tech:xsd:camt.054.001.03
camt.054.001.03.xsd">
<BkToCstmrDbtCdtNtfctn><GrpHdr><MsgId>0000000006</MsgId>
<CreDtTm>2013-04-
16T14:38:00</CreDtTm>
</GrpHdr>
</BkToCstmrDbtCdtNtfctn></Document>
我正在使用这个java DOM解析器程序来解析和检索值
import java.io.File;
import java.util.ArrayList;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.NodeList;
public class GetNodeValues {
static String value = null;
static ArrayList alist = null;
/****************** GET XPATH FOR EACH TAG **************************************/
public static String getXPath(Element elemnt) {
String xpath = null;
String curNode = elemnt.getNodeName();
ArrayList<String> al = new ArrayList<String>();
al.add(curNode);
// al.add(parNode);
while (!elemnt.getParentNode().getNodeName().equals("#document")) {
al.add(elemnt.getParentNode().getNodeName());
elemnt = (Element) elemnt.getParentNode();
}
for (int i = al.size() - 1; i >= 0; i--) {
xpath = xpath + "/" + al.get(i);
}
return xpath.replaceAll("null", "");
}
/******************************************************************************************/
/**************************** GET TAG NAMES AND VALUES ***********************/
public static ArrayList getValues() {
try {
alist = new ArrayList();
String xmlFile = "C:/Users/Administrator/Desktop/sample2.xml";
File file = new File(xmlFile);
if (file.exists()) {
// Create a factory
DocumentBuilderFactory factory = DocumentBuilderFactory
.newInstance();
// Use the factory to create a builder
DocumentBuilder builder = factory.newDocumentBuilder();
Document doc = builder.parse(xmlFile);
doc.getDocumentElement().normalize();
// Get a list of all elements in the document
NodeList list = doc.getElementsByTagName("*");
for (int i = 0; i < list.getLength(); i++) {
// Get element
Element element = (Element) list.item(i);
String nodnam = element.getNodeName();
if (element.getChildNodes().getLength() > 0) // then it has
// text
{
String val = element.getChildNodes().item(0)
.getNodeValue();
if (val.startsWith("\n")) { // Discarding pseudo nodes
} else {
value = nodnam + " > " + val + " > "
+ getXPath(element); // print node names and
// values
System.out.println(value);
alist.add(value);
}
}
}
} else {
System.out.print("File not found!");
}
} catch (Exception e) {
System.exit(1);
}
return alist;
}
/********************************************************************************************/
/************************** MAIN METHOD **********************************************/
public static void main(String[] args) {
System.out.println(getValues());
}
}
它不打印任何值。但是,如果我编辑xml文件并添加缩进和这样的新行
<?xml version="1.0" encoding="UTF-8"?>
<Document xmlns="urn:iso:std:iso:20022:tech:xsd:camt.054.001.03" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:iso:std:iso:20022:tech:xsd:camt.054.001.03 camt.054.001.03.xsd">
<BkToCstmrDbtCdtNtfctn>
<GrpHdr>
<MsgId>0000000006</MsgId>
<CreDtTm>2013-04-16T14:38:00</CreDtTm>
</GrpHdr>
</BkToCstmrDbtCdtNtfctn>
</Document>
然后我得到如下的输出
MsgId > 0000000006 > /Document/BkToCstmrDbtCdtNtfctn/GrpHdr/MsgId
CreDtTm > 2013-04-16T14:38:00 > /Document/BkToCstmrDbtCdtNtfctn/GrpHdr/CreDtTm
所以问题是我无法将每个xml文件编辑为no。要处理的文件很大。我在java dom解析器中遗漏了什么?我需要的是程序应该解析和打印没有缩进和新行的xml文件的值....
答案 0 :(得分:2)
请注意:
} catch (Exception e) {
System.exit(1);
}
您正在隐藏异常,无法查看真正的问题。 打印堆栈跟踪,至少,如:
} catch (Exception e) {
e.printStackTrace();
System.exit(1);
}
在这种情况下,来自var
的{{1}}可以为空。因此,使用以下修复程序应解决此问题:
String val = element.getChildNodes().item(0).getNodeValue();
答案 1 :(得分:1)
除了导致NPE的实际问题外,我认为此时您的代码存在3个明显的问题:
} catch (Exception e) {
System.exit(1);
}
第一个问题(如@dan所述)是您不打印堆栈跟踪。
第二个问题是你正在捕捉Exception
。在大多数情况下这是一个坏主意,因为除了你可能期望的任何异常之外,你最终会捕获各种意外异常。最好只捕获您期望的异常,并在此时处理。其余的应该被允许传播。
第三个问题是你在看似实用的方法中调用System.exit
。出于以下几个原因,这是个坏主意:
在一种方法中拯救将使该方法难以在其他环境中使用......拯救是不对的。
调用System.exit的任何方法对单元测试都很棘手。如果你没有采取措施来避免它(例如使用可以“模拟”该调用的模拟框架)该方法将导致运行单元测试的JVM立即停止....
在我看来,编写该代码的正确方法是:
throws
子句添加到getValues()
方法声明和try ... catch
放在main
方法中......用一些代码输出或记录异常堆栈跟踪当然。