如何将标记从第一个文件导入到所有标记在第二个文件中

问题描述 投票:0回答:2

如何导入标签“mohamed”从第一个文件到所有TAG ahmed在第二个文件中

<?xml version="1.0" encoding="UTF-8"?>
<map
      xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9        http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->


<mohamed>stackover flow</mohamed>
</map>

我的Xml-2文件是

<?xml version="1.0" encoding="UTF-8"?>
<map
      xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
            http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->

<ahmed></ahmed>
<ahmed></ahmed>
<ahmed></ahmed>

</map>

在此处输入代码

使用这些部分我可以将TagName(“mohamed”)导入TagName(“ahmed”)首先我只想将其导入每个TagName(“ahmed”)在第二个文件中

public static void t (int f ,  int g,String z) {
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    DocumentBuilder db = null;
    Document doc = null;
    Document doc2 = null;
String a = "C:\\Users\\chirap\\Desktop\\Startimes\\C.txt" ;
String  c ;
    try {
            db = dbf.newDocumentBuilder();
            doc = db.parse(new File(a));

            doc2 = db.parse(new File("C:\\Users\\chirap\\Desktop\\Startimes\\A (1).txt"));
            NodeList ndListFirstFile = doc.getElementsByTagName("ahmed");

            Node nodeArea = doc.importNode(doc2.getElementsByTagName("mohamed").item(0), true);


        NodeList nList2 = doc2.getElementsByTagName("mohamed");

            for (int i = f; i <g; i++) {
                c = i+"" ;
               doc2 = db.parse(new File("C:\\Users\\chirap\\Desktop\\Startimes\\A ("+c+").txt"));

            for (int temp = 0; temp < nList2.getLength(); temp++) {

                nodeArea = doc.importNode(doc2.getElementsByTagName("mohamed").item(temp), true);
                   ndListFirstFile.item(0).appendChild(nodeArea);

结果现在:

<?xml version="1.0" encoding="UTF-8"?>
<map
      xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
            http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->

<ahmed><mohamed>stackover flow</mohamed></ahmed>
<ahmed></ahmed>
<ahmed></ahmed>

</map>

我想要这个结果:

<?xml version="1.0" encoding="UTF-8"?>
<map
      xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
            http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->

    <ahmed><mohamed>stackover flow</mohamed></ahmed>
    <ahmed><mohamed>stackover flow</mohamed></ahmed>
    <ahmed><mohamed>stackover flow</mohamed></ahmed>

    </map>
java xml netbeans getelementsbytagname
2个回答
0
投票

尝试这个

try {
     File inputOne = new File("first.xml");
     File inputTwo = new File("second.xml");

     DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
     DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
     Document docOne = dBuilder.parse(inputOne);
     Document docTwo = dBuilder.parse(inputTwo);
     NodeList nodeListAhmed = docTwo.getElementsByTagName("ahmed");

     for (int i = 0; i < nodeListAhmed.getLength(); i++) {
         Node nodeMohamed = docTwo.importNode(docOne.getElementsByTagName("mohamed").item(0), true);
         nodeListAhmed.item(i).appendChild(nodeMohamed);
     }

     DOMSource source = new DOMSource(docTwo);
     TransformerFactory transformerFactory = TransformerFactory.newInstance();
     Transformer transformer = transformerFactory.newTransformer();
     StreamResult result = new StreamResult("output.xml");
     transformer.transform(source, result);

} catch (Exception e) {
     e.printStackTrace();
}

0
投票

我想要这个结果

<?xml version="1.0" encoding="UTF-8"?>
<ahmed
      xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
            http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->


stackover flow
</ahmed>

您可以使用.querySelector()获取具有tagName "mohamed"的元素,将元素的.parentElement存储在变量中,将匹配元素的.textContent存储在变量中,使用.removeChild()从父元素中删除匹配元素,将父元素.textContent设置为存储变量

const xml = `<?xml version="1.0" encoding="UTF-8"?>
<ahmed
      xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9        http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->


<mohamed>stackover flow</mohamed>
</ahmed>`;
const parser = new DOMParser();
const doc = parser.parseFromString(xml, "text/xml");
let el = doc.querySelector("mohamed");
let parentElement = el.parentElement;
let text = el.textContent;
parentElement.removeChild(el);
parentElement.textContent = text;
console.log(`<?xml version="1.0" encoding="UTF-8"?>${doc.documentElement.outerHTML}`);
© www.soinside.com 2019 - 2024. All rights reserved.