我的代码太慢,但我不确定如何改进它。从磁盘读取1k文件的DOM需要大约20毫秒,这可能是好的,具体取决于磁盘,但是我还有20毫秒的时间来处理xpath语句,这太过分了。以下是一些带时间注释的示例代码。我该如何改进代码?
这在施工时发生:
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder dBuilder = this.dbFactory.newDocumentBuilder();
XPathExpression[] ex = new XPathExpression[]{about 30 different expressions}
XPathExpression mainEx =xPath.compile("/rootElement/firstLevel/secondLevel");
然后是代码:
Document doc = this.dBuilder.parse("somefile.xml");
//took 20 ms until here
NodeList nodes = (NodeList) mainEx .evaluate,doc, XPathConstants.NODESET);
//took another 20 ms until here !!!
for (int i = 0; i < nodes.getLength(); i++) {
Node n = nodes.item(i);
for (XPathExpression e:ex) {
String v = (String) e.evaluate(n, XPathConstants.STRING);
if (v != null) {
System.out.println(v);
}
}
}
//this only takes 5 ms
答案 0 :(得分:4)
您应该使用XPathExpression
将XPath表达式预编译为XPath.compile
。然后拨打XPathExpression.evaluate
。
如果你多次执行它,这将节省你的时间。我假设情况确实如此,或者20毫秒无所谓。
编辑:如评论中所述,此question包含更多信息,包括JVM参数。
答案 1 :(得分:3)
你可能会遇到我在这里记录的这个问题:
Java XPath (Apache JAXP implementation) performance
基本上,您应该添加这些JVM参数以大大加快Xalan的XPath实现:
-Dorg.apache.xml.dtm.DTMManager=
org.apache.xml.dtm.ref.DTMManagerDefault
或
-Dcom.sun.org.apache.xml.internal.dtm.DTMManager=
com.sun.org.apache.xml.internal.dtm.ref.DTMManagerDefault