我有以下XML部分,我希望使用Ximpleware / VTD-XML从新的XML中删除属性并输出。 来源:
<top_level>
<Item id="1">
<other_data>
目标:
<top_level>
<Item>
<other_data>
我知道我可以使用removeAttribute(int attrNameIndex)来做到这一点,但是我很难找到合适的方法来获取attrNameIndex。
答案 0 :(得分:1)
这是一个带有嵌入式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());
}
}