6

我想使用 xPath 修改现有的 XML 文件。如果节点不存在,则应创建它(如果需要,还应创建它的父节点)。一个例子:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <param0>true</param0>
  <param1>1.0</param1>
</configuration>

这里有几个我想插入/修改的 xPath:

/configuration/param1/text()         -> 4.0
/configuration/param2/text()         -> "asdf"
/configuration/test/param3/text()    -> true

之后的 XML 文件应如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <param0>true</param0>
  <param1>4.0</param1>
  <param2>asdf</param2>
  <test>
    <param3>true</param3>
  </test>
</configuration>

我试过这个:

import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.xpath.XPath;
import javax.xml.xpath.XPathConstants;
import javax.xml.xpath.XPathFactory;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;

import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

try {
  DocumentBuilderFactory domFactory = DocumentBuilderFactory.newInstance();
  Document doc = domFactory.newDocumentBuilder().parse(file.getAbsolutePath());
  XPath xpath = XPathFactory.newInstance().newXPath();

  String xPathStr = "/configuration/param1/text()";
  Node node = ((NodeList) xpath.compile(xPathStr).evaluate(doc, XPathConstants.NODESET)).item(0);
  System.out.printf("node value: %s\n", node.getNodeValue());
  node.setNodeValue("4.0");

  TransformerFactory transformerFactory = TransformerFactory.newInstance();
  Transformer transformer = transformerFactory.newTransformer();
  transformer.transform(new DOMSource(doc), new StreamResult(file));
} catch (Exception e) {
  e.printStackTrace();
}

运行此代码后,文件中的节点发生了变化。正是我想要的。但是,如果我使用以下路径之一,node则为 null (因此NullPointerException抛出 a ):

/configuration/param2/text()
/configuration/test/param3/text()

如何更改此代码以便创建节点(以及不存在的父节点)?

编辑:好的,澄清一下:我有一组要保存到 XML 的参数。在开发过程中,这个集合可以改变(一些参数被添加,一些被移动,一些被删除)。所以我基本上想要一个函数来将当前的参数集写入一个已经存在的文件。它应该覆盖文件中已经存在的参数,添加新参数并将旧参数保留在其中。

阅读也一样,我可以只使用 xPath 或其他一些坐标并从 XML 中获取值。如果不存在,则返回空字符串。

我对如何实现它没有任何限制,xPath、DOM、SAX、XSLT...一旦编写了功能(如 BeniBela 的解决方案),它应该很容易使用。

因此,如果我要设置以下参数:

/configuration/param1/text()         -> 4.0
/configuration/param2/text()         -> "asdf"
/configuration/test/param3/text()    -> true

结果应该是起始 XML + 那些参数。如果它们已经存在于该 xPath 中,则它们将被替换,否则它们将在该点插入。

4

4 回答 4

6

这是一个简单的 XSLT 解决方案

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:strip-space elements="*"/>

 <xsl:template match="node()|@*">
     <xsl:copy>
       <xsl:apply-templates select="node()|@*"/>
     </xsl:copy>
 </xsl:template>

 <xsl:template match="param1/text()">4.0</xsl:template>

 <xsl:template match="/*">
  <xsl:copy>
   <xsl:apply-templates select="@*|node()"/>
     <param2>asdf</param2>
     <test><param3>true</param3></test>
  </xsl:copy>
 </xsl:template>
</xsl:stylesheet>

当此转换应用于提供的 XML 文档时:

<configuration>
    <param0>true</param0>
    <param1>1.0</param1>
</configuration>

产生了想要的正确结果:

<configuration>
   <param0>true</param0>
   <param1>4.0</param1>
   <param2>asdf</param2>
   <test><param3>true</param3></test>
</configuration>

请注意

XSLT 转换永远不会“就地更新”。它总是创建一个新的结果树。因此,如果要修改同一个文件,通常将转换结果保存在另一个名称下,然后删除原始文件并将结果重命名为原始名称。

于 2012-09-17T13:15:50.267 回答
6

如果您想要一个没有依赖关系的解决方案,您可以只使用 DOM 而无需 XPath/XSLT。

Node.getChildNodes|getNodeName / NodeList.* 可用于查找节点,Document.createElement|createTextNode, Node.appendChild 可用于创建新节点。

然后,您可以编写自己的简单“XPath”解释器,在路径中创建缺失节点,如下所示:

public static void update(Document doc, String path, String def){
  String p[] = path.split("/");
  //search nodes or create them if they do not exist
  Node n = doc;
  for (int i=0;i < p.length;i++){
    NodeList kids = n.getChildNodes();
    Node nfound = null;
    for (int j=0;j<kids.getLength();j++) 
      if (kids.item(j).getNodeName().equals(p[i])) {
    nfound = kids.item(j);
    break;
      }
    if (nfound == null) { 
      nfound = doc.createElement(p[i]);
      n.appendChild(nfound);
      n.appendChild(doc.createTextNode("\n")); //add whitespace, so the result looks nicer. Not really needed
    }
    n = nfound;
  }
  NodeList kids = n.getChildNodes();
  for (int i=0;i<kids.getLength();i++)
    if (kids.item(i).getNodeType() == Node.TEXT_NODE) {
      //text node exists
      kids.item(i).setNodeValue(def); //override
      return;
    }

  n.appendChild(doc.createTextNode(def));    
}

然后,如果您只想更新 text() 节点,则可以将其用作:

DocumentBuilderFactory domFactory = DocumentBuilderFactory.newInstance();
Document doc = domFactory.newDocumentBuilder().parse(file.getAbsolutePath());

update(doc, "configuration/param1", "4.0");
update(doc, "configuration/param2", "asdf");
update(doc, "configuration/test/param3", "true");
于 2012-09-17T16:10:31.533 回答
3

我创建了一个使用 XPATH 创建/更新 XML 的小项目:https ://github.com/shenghai/xmodifier 更改 xml 的代码如下:

DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();
builderFactory.setNamespaceAware(true);
DocumentBuilder documentBuilder = builderFactory.newDocumentBuilder();
Document document = documentBuilder.parse(xmlfile);

XModifier modifier = new XModifier(document);
modifier.addModify("/configuration/param1", "asdf");
modifier.addModify("/configuration/param2", "asdf");
modifier.addModify("/configuration/test/param3", "true");
modifier.modify();
于 2014-11-28T05:37:35.330 回答
1

我会通过使用VTD-XML为您指出一种新的/新颖的方式来做您所描述的事情......有很多原因表明 VTD-XML 比为这个问题提供的所有其他解决方案要好得多......这里有一些链接...

dfs

   import com.ximpleware.*;
    import java.io.*;
    public class modifyXML {
            public static void main(String[] s) throws VTDException, IOException{
                VTDGen vg = new VTDGen();
                if (!vg.parseFile("input.xml", false))
                    return;
                VTDNav vn = vg.getNav();
                AutoPilot ap = new AutoPilot(vn);
                ap.selectXPath("/configuration/param1/text()");
                XMLModifier xm = new XMLModifier(vn);
                // using XPath
                int i=ap.evalXPath();
                if(i!=-1){
                    xm.updateToken(i, "4.0");
                }
                String s1 ="<param2>asdf</param2>/n<test>/n<param3>true</param3>/n</test>";
                xm.insertAfterElement(s1);
                xm.output("output.xml");
            }
        }
于 2016-04-27T00:28:42.630 回答