gpt4 book ai didi

java - 根据重复元素将大型 XML 文件拆分为小块

转载 作者:数据小太阳 更新时间:2023-10-29 02:25:38 24 4
gpt4 key购买 nike

考虑以下包含 500 MB 数据的 XML

<?xml version="1.0" encoding="UTF-8"?>
<Parents>
<process Child ="A">...</process>
<process Child="B">...</process>
<process Child="A">...</process>
<process Child="C">..</process>
<process Child=...
</process>
<\Parents>

这个 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”的所有子项都应该以与 B、C 和其他人相同的方式位于 example_A.xml 文件中。

最佳答案

这是对您现有代码的非常简单的修改。实际上有多种方法可以做到这一点。我将向您展示其中之一:通过使用 VTDNav 的 getAttrVal 方法 () 显式比较 attr val。

public static void main1(String args[]) {
try {
VTDGen vg = new VTDGen();
if (vg.parseFile("C:\\..\\example.xml", true)) {
VTDNav vn = vg.getNav();
AutoPilot ap = new AutoPilot(vn);
ap.selectXPath("/Parents/process");
int chunk = 0;
FileOutputStream fopsA=(new FileOutputStream("C:\\....\\resultA" + chunk + ".xml"));
fopsA.write("<Parent>\n".getBytes());
FileOutputStream fopsB=(new FileOutputStream("C:\\....\\resultB" + chunk + ".xml"));
while (( ap.evalXPath()) != -1) {
long frag = vn.getElementFragment();
int i=vn.getAttrVal("Child");
if (i==-1) throw new NavException("unexpected result");
if (vn.compareTokenString(i,"A")==0){

fopsA.write(vn.getXML().getBytes(), (int) frag,
(int) (frag >> 32));

}else if (vn.compareTokenString(i,"B")==0){

fopsB.write(vn.getXML().getBytes(), (int) frag,
(int) (frag >> 32));
}
chunk++;
}

fopsA.write("</Parent>\n".getBytes());
fopsB.write("</Parent>\n".getBytes());
}
} catch (Exception ex) {
ex.printStackTrace();
}

关于java - 根据重复元素将大型 XML 文件拆分为小块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45206922/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com