vtd-xml get/remove 属性名称和值

vtd-xml get/remove attribute name and value

我有以下 XML 片段,我想使用 Ximpleware/VTD-XML 从中剥离属性并输出为新的 XML。 来源:

<top_level>
  <Item id="1">
    <other_data>

目标:

<top_level>
  <Item>
    <other_data>

我知道我可以使用 removeAttribute(int attrNameIndex) 来执行此操作,但是我正在努力寻找合适的方法来获取 attrNameIndex。

这是一个嵌入 xml 文档的小代码片段。它向您展示了如何删除一个属性或所有属性。

import com.ximpleware.*;
import java.io.*;

public class removeAttrNode {
    public static void main(String[] s) throws VTDException, Exception{
        VTDGen vg = new VTDGen(); ByteArrayOutputStream baos = new ByteArrayOutputStream();
        String xml = "<Payment attr1=' some val' attr2='some other val'><Store><![CDATA[abc]]></Store></Payment>";
        vg.setDoc(xml.getBytes());
        vg.parse(false); // turn off namespace awareness so that 
        VTDNav vn = vg.getNav();
        AutoPilot ap = new AutoPilot(vn);
        XMLModifier xm = new XMLModifier(vn);
        ap.selectXPath("/Payment/@*");// select all attr node of Payment element
        int i=0;
        while((i=ap.evalXPath())!=-1){
            System.out.println("attr name "+vn.toString(i)+ " attr val ==>"+ vn.toString(i+1));
            xm.removeAttribute(i);
        }
        xm.output(baos);
        System.out.println(baos.toString());    
    }
}