⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 e547. merging text nodes in a dom document.txt

📁 这里面包含了一百多个JAVA源文件
💻 TXT
字号:
This example removes an element node and inserts its children nodes into the element node's parent. This can cause two text nodes to be adjacent. Normalizing the document merges adjacent text nodes into one and removes empty text nodes. 
    // Obtain a document; this method is implemented in
    // e510 The Quintessential Program to Create a DOM Document from an XML File
    Document doc = parseXmlFile("infilename.xml", false);
    
    // Obtain the root element to remove
    Element element = (Element)doc.getElementsByTagName("b").item(0);
    
    // Get the parent of the element
    Node parent = element.getParentNode();
    
    // Move all children of the element in front of the element
    while (element.hasChildNodes()) {
        parent.insertBefore(element.getFirstChild(), element);
    }
    
    // Remove the element
    parent.removeChild(element);
    
    // Merge all text nodes under the parent
    parent.normalize();

This is the sample input for the example: 
    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        Here is <b>some</b> text
    </root>

This is the resulting XML: 
    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        Here is some text
    </root>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -