如何使用 VTD-XML 解析器删除特定节点

2022-01-10 00:00:00 xml xml-parsing java vtd-xml

使用VTD-XML解析器下面我该怎么做.

With the VTD-XML parser how do I do below.

<root>
     <A>
      <B>
        <c>1<c/>
        <d>2<d/>
        <e>3<e/>
      </B>
      <B>
        <c>1<c/>
        <d>2<d/>
        <e>3<e/>
      </B>
     </A>
 </root>

在上面的 xml 中,如何仅删除具有标签名称 <B> 的节点?

In the above xml how do I remove only nodes has tag name <B> ?

所以我的最终输出应该是

So my final out put should be

<root>
     <A>
     </A>
</root>

推荐答案

这是删除A的所有子节点的代码,关键是VTDNav的getContentFragment().

This is the code that removes all child nodes of A, the key is VTDNav's getContentFragment().

import com.ximpleware.*;

public class removeNode {

    public  static void main(String s[]) throws Exception{
        VTDGen vg = new VTDGen();
        boolean b = vg.parseFile("input.xml", false);
        if (b==false)
            return;
        VTDNav vn = vg.getNav();
        XMLModifier xm = new XMLModifier(vn);
        vn.toElement(VTDNav.FC); // get to A node
        long l = vn.getContentFragment();
        xm.remove(l);
        xm.output("output.xml");
    }
}

相关文章