How to remove a specific node using VTD-XML parser(如何使用 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");
}
}
这篇关于如何使用 VTD-XML 解析器删除特定节点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 VTD-XML 解析器删除特定节点
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 获取数字的最后一位 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 转换 ldap 日期 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01