gpt4 book ai didi

java - 优化 DOM 和 XPath Java 代码

转载 作者:数据小太阳 更新时间:2023-10-29 02:21:04 33 4
gpt4 key购买 nike

我的代码太慢了,但我不确定如何改进它。将一个 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

最佳答案

您可能遇到了我在此处记录的这个问题:

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

关于java - 优化 DOM 和 XPath Java 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8285003/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com