使用VTD-XML从XML填充POJO

时间:2018-09-18 13:59:30

标签: java xpath vtd-xml

示例XML

<?xml version="1.0" encoding="UTF-8"?>
<Document>
    <Report>
        <Node>
            <Detail>
                <Id>1</Id>
                <Value>Value 1</Value>
                <Tag1>
                    <Owner>
                        <Id>
                            <INT>12345</INT>
                        </Id>
                    </Owner>
                </Tag1>
            </Detail>
            <Status>
                <Result>Pass</Result>
            </Status>
        </Node>
        <Node>
            <Detail>
                <Id>2</Id>
                <Value>Value 2</Value>
                <Tag1>
                    <Owner>
                        <Id>
                            <String>TEST</String>
                        </Id>
                    </Owner>
                </Tag1>
            </Detail>
            <Status>
                <Result>Fail</Result>
            </Status>
        </Node> 
        <Node>
            <Detail>
                <Id>3</Id>
                <Value>Value 3</Value>
                <Tag1>
                    <Owner>
                        <Id>
                            <UN>UNKNOWN</UN>
                        </Id>
                    </Owner>
                </Tag1>
            </Detail>
            <Status>
                <Result>Waiting</Result>
            </Status>
        </Node>
    </Report>
</Document>

基于上述结构,我想读取元素/属性并填充POJO(最好是XPath),因为元素路径不一致,例如:<Tag1>

我不知道如何进行。我试过使用AutoPilot,但它会顺序读取数据,例如所有节点ID。我无法找出一种方法来读取<Node>中的所有数据,然后继续进行下一个操作,依此类推。最后,我需要返回填充的POJO集合。

DOM超出了范围,因为XML文件很大,大小大约为800MB到1GB,大约为200MB。 600,000+ <Node>

谢谢。

XML阅读器

公共无效过程(最终字符串fullPath){

try {
    final VTDGen vg = new VTDGen();

    if (vg.parseFile(fullPath, false)) {
        final VTDNav vn = vg.getNav();
        final AutoPilot ap = new AutoPilot(vn);
        ap.selectXPath(ROOT);

        while ((ap.evalXPath()) != -1) {
            final AutoPilot pilot1 = new AutoPilot(vn);
            pilot1.selectXPath(ROOT + "/Detail/Id");

            while (pilot1.evalXPath() != -1) {
                final int t = vn.getText();
                if (t != -1) {
                    System.out.println(vn.toNormalizedString(t));
                }

                final AutoPilot pilot2 = new AutoPilot(vn);
                pilot2.selectXPath(ROOT + "/Status/Result");

                if (pilot2.evalXPath() != -1) {
                    final int k = vn.getText();
                    if (k != -1) {
                        System.out.println(vn.toNormalizedString(k));
                    }
                }
                // pilot2.resetXPath();
            }
        }
    }
}
catch (Exception exception) {
}

}

1 个答案:

答案 0 :(得分:0)

我对您的代码进行了一些修改,使其能够正常工作...加上更正了一些内容...将在代码中嵌入更多注释。...

需要记住的几件事

  1. 永远不要将autoPIlot实例化和xpath选择放在一会儿 环。永远不会!
  2. 通过resetXPath()重复使用
  3. 使用push和pop来在最外层的while循环中保持一致的状态。

导入com.ximpleware。*; 公开课的泽西{

public static void main(String[] args) throws Exception{
    // TODO Auto-generated method stub
    final VTDGen vg = new VTDGen();

    if (vg.parseFile("d:\\xml\\sawi.xml", false)) {
        final VTDNav vn = vg.getNav();
        final AutoPilot ap = new AutoPilot(vn);
        ap.selectXPath("/Document/Report/Node");
        final AutoPilot pilot1 = new AutoPilot(vn);
        pilot1.selectXPath("Detail/Id");
        final AutoPilot pilot2 = new AutoPilot(vn);
        pilot2.selectXPath("Status/Result");
        while ((ap.evalXPath()) != -1) {
            vn.push();
            while (pilot1.evalXPath() != -1) {
                final int t = vn.getText();
                if (t != -1) {
                    System.out.println(vn.toNormalizedString(t));
                }

            } 
            vn.pop();
            vn.push();
                if (pilot2.evalXPath() != -1) {
                    final int k = vn.getText();
                    if (k != -1) {
                        System.out.println(vn.toNormalizedString(k));
                    }
                }
            vn.pop();
            pilot2.resetXPath();
            pilot1.resetXPath();

           // vn.pop();
        }
    }
}

}