考虑以下具有500 MB数据的XML
...
...
...
..
此xml具有多个带有标记“ A”或“ B”或其他标记的子属性,我想为“ A”,“ B”,“ C”或其他诸如expamle_A.xml,example_B.xml等创建单独的XML.正在为每个子属性创建单独的xml敌人,这意味着如果我们有500个子属性,则其将创建500个xml.
public static void main(String args[]) {
try {
VTDGen v = new VTDGen();
if (v.parseFile("C:\\..\\example.xml", true)) {
VTDNav vn = vg.getNav();
AutoPilot ap = new AutoPilot(vn);
ap.selectXPath("/Parents/child");
int chunk = 0;
while (( ap.evalXPath()) != -1) {
long frag = vn.getElementFragment();
(new FileOutputStream("C:\\....\\result" + chunk + ".xml")).write(vn.getXML().getBytes(), (int) frag,
(int) (frag >> 32));
chunk++;
}
}
} catch (Exception ex) {
ex.printStackTrace();
}
}
现在的事情是,我想基于实例的同一组的子对象属性拆分文件,“ A”的所有子对象都应以相同的方式在example_A.xml文件中用于B,C和其他.