1

2 つの XML ファイル (ソース ファイルと一時ファイル) をマージし、結果のファイルをソース ファイルに配置したいのですが、ソース ファイルと一時ファイルの両方に同じ要素がありますが、値は次のように異なります。

ソース.xml:

<Main>
   <source>
        <param>
            <entry>
                <key> bla1 </key>
                <value> bla1 </value>
            </entry> 
        </param>
        <Name> name1 </Name>
   </Source> 
</Main>

そして temp.xml:

<Main>
   <source>
        <param>
           <entry>
               <key> bla2 </key>
               <value> bla2 </value>
           </entry>
           <entry>
               <key> bla3 </key>
               <value> bla3 </value>
           </entry>  
        </param>
        <Name> name2 </Name>
   </Source> 
</Main>

そして、私が望む望ましい出力:

<Main>
  <source>
        <param>
            <entry>
                <key> bla1 </key>
                <value> bla1 </value>
            </entry> 
        </param>
        <Name> name1 </Name>
   </Source> 
   <source>
        <param>

           <entry>
               <key> bla2 </key>
               <value> bla2 </value>
           </entry>
           <entry>
               <key> bla3 </key>
               <value> bla3 </value>
           </entry>  
        </param>
        <Name> name2 </Name>
   </Source> 
</Main>

私はこのコードを使用していますが、source.xmlにはまったく影響しません:

import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.StringWriter;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.transform.OutputKeys;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerException;
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.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.SAXException;

public class MergeXml {

    private static final String fileName = "Source.xml";
    private static final String tempName = "temp.xml";
    private static final String mainTag = "XmlSource";
    private static final String YES = "yes";


    public void mergeXML() throws ParserConfigurationException, SAXException,
            IOException, TransformerException {

        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
        DocumentBuilder db = null;
        Document doc = null;
        Document doc2 = null;

        db = dbf.newDocumentBuilder();
        doc = db.parse(new File(fileName));
        doc2 = db.parse(new File(tempName));
        Element tag = doc.createElement(mainTag);

        NodeList nodeList = doc2.getElementsByTagName("*");

        for(int i =0 ; i < nodeList.getLength(); i++){

            Node node = nodeList.item(i);
            if (node.getNodeType() == Node.ELEMENT_NODE) {
                String nodeName = node.getNodeName();
                Element tagChild = doc.createElement((nodeName));

                tag.appendChild(tagChild);
            }
        }

        TransformerFactory tFactory = TransformerFactory.newInstance();
        Transformer transformer = tFactory.newTransformer();
        transformer.setOutputProperty(OutputKeys.INDENT, YES);

        DOMSource source = new DOMSource(doc);
        StreamResult result = new StreamResult(new StringWriter());
        transformer.transform(source, result);

        BufferedWriter output = new BufferedWriter(new FileWriter(fileName));
        String xmlOutput = result.getWriter().toString();
        output.write(xmlOutput);
        output.close();

    }
}

必要に応じて、私の XML 元のファイル:

   <XmlSource>
         <hostName>api.worldweatheronline.com</hostName>
         <parameters>
             <entry>
                 <key>num_of_days</key>
                 <value>1</value>
             </entry>
             <entry>
                 <key>q</key>
                 <value>Cairo</value>
            </entry>
            <entry>
                 <key>format</key>
                 <value>xml</value>
            </entry>
            <entry>
                 <key>key</key>
                 <value>wd63kxr294rcgvbynhaf2z4r</value>
            </entry>
       </parameters>
       <URL>
        http://api.worldweatheronline.com/free/v1/weather.ashx?q=Cairo&format=xml&num_of_days=1&key=wd63kxr294rcgvbynhaf2z4r
      </URL>
      <URLPath>/free/v1/weather.ashx</URLPath>

4

3 に答える 3

1

2 つの XML をマージするために使用できるコード スニペットを次に示します。

public static void generateDocument(Document root, Document insertDoc, String toPath, String fromPath) {

    if (null != root) {



        try {
              Node element = getNode(insertDoc, fromPath);
              Node dest = root.importNode(element, true);
            Node node = getNode(root, toPath);
            node.insertBefore(dest, null);
        } catch (Exception ex) {
           System.out.println(ex.getMessage());
        }

    }

}
public Node getNode(Document doc, String strXpathExpression)
            throws ParserConfigurationException, SAXException, IOException,
            XPathExpressionException {

        XPath xpath = XPathFactory.newInstance().newXPath();

        // XPath Query for showing all nodes value
        XPathExpression expr = xpath.compile(strXpathExpression);

        Node node = (Node) expr.evaluate(doc, XPathConstants.NODE);

        return node;
    }

したがって、アプローチは次のようになり
ます。 1. Soruce.xml のドキュメント obj(obj1) を
作成します。 2. test.xml のドキュメント obj(obj2) を作成し、Main タグを削除します。

            DocumentBuilderFactory domFactory = DocumentBuilderFactory.newInstance();
            DocumentBuilder builder = domFactory.newDocumentBuilder();
            Document doc1 = builder.parse(new File("s1.xml"));
            Document doc2 = builder.parse(new File("s2.xml"));
            generateDocument(doc1,doc2,"/Main", "Main/source");
  1. 上記のメソッドを呼び出す generateDocument(obj1, obj2, "/Main")
于 2013-05-29T07:46:44.843 に答える