当前位置: 首页 > 知识库问答 >
问题:

(Java)VTD-XML

沈俊美
2023-03-14

我有两个xml文件。一个是参考(旧)文件,另一个是测试(新)文件。根据提供给我的一些规则,我必须检查是否有东西从旧模型中删除,然后添加到新模型中,或者检查是否有东西从旧文件中删除到新文件中。

我使用的是VTD-XML,但DOM解决方案或任何其他与xpath一起使用的解决方案将非常有用。

这是java代码:

public void validateBooleanVTD2(PropertyRule prop, int i) throws XPathParseException, XPathEvalException,
        NavException {
    int n = -1;
    String xPath = prop.getEntitiesObjects().get(i).getxPath(); // eg. /people/man/attribute[not(key)]
    String propertyChecked = prop.getTag(); // eg. mandatory 
    VTDGen parseRef = new VTDGen();
    VTDGen parseTest = new VTDGen();
    parseRef.parseFile(ref, false);
    parseTest.parseFile(test, false);
    VTDNav navigateRef = parseRef.getNav();
    VTDNav navigateTest = parseTest.getNav();
    AutoPilot autopilotRef = new AutoPilot();
    AutoPilot autopilotTest = new AutoPilot();
    autopilotRef.bind(navigateRef);
    autopilotTest.bind(navigateTest);
    autopilotRef.selectXPath(xPath);
    //Instant start = Instant.now();

    while ((n = autopilotRef.evalXPath()) != -1) {
        int nameIndexRef = navigateRef.getAttrVal("name");
        String nameRef = navigateRef.toNormalizedString(nameIndexRef);
        autopilotTest.selectXPath(xPath + "[@name='" + nameRef + "']"); // eg. /people/man/attribute[not(key)][@name='John']
        int m = -1;
        while ((m = autopilotTest.evalXPath()) != -1) {

            if (navigateRef.toElement(VTDNav.FIRST_CHILD, propertyChecked) == false
                    && navigateTest.toElement(VTDNav.FIRST_CHILD, propertyChecked) == true) {// if it is in ref but not in test 

                System.out.println(nameRef + ":" + propertyChecked + ":Changed false to true");

                navigateRef.toElement(VTDNav.PARENT);
                navigateTest.toElement(VTDNav.PARENT);

            }

            else if (navigateRef.toElement(VTDNav.FIRST_CHILD, propertyChecked) == true
                    && navigateTest.toElement(VTDNav.FIRST_CHILD, propertyChecked) == false) { // if it is in test but not in ref
                System.out.println(nameRef + ":" + propertyChecked + ":Changed true to false");

                navigateRef.toElement(VTDNav.PARENT);
                navigateTest.toElement(VTDNav.PARENT);

            }

        }
        navigateTest.toElement(VTDNav.PARENT);
    }
    navigateRef.toElement(VTDNav.PARENT);

}

1) 在ref文件上完成xpath后,我得到man节点的所有属性:

/people/man/attribute[not(key)]

我得到name属性的值。

2) 然后我在测试文件上执行另一个xpath以获得公共属性:

/people/man/attribute[not(key)][@name='attr1']

3) 然后我有我的if语句

问题:如果没有if语句,我从ref和测试文件获得的所有属性应该有29000个。例如,当我试图检查该节点(属性)是否具有名为强制的子节点时,我得到了2个结果。但应该还有更多问题,问题在哪里?

参考文件:

<people>
<man name="John">
    <attribute name="attr1">
    </mandatory>
    </attribute>
    <attribute name="attr2">
    </attribute>
</man>
<man name="Hans">
    <attribute name="attr3">
    </attribute>
</man>
<man name="Max">
    <attribute name="attr4">
    </attribute>
</man>

测试文件:

<people>
<man name="John">
    <attribute name="attr1">

    </attribute>
    <attribute name="attr2">
    </attribute>
</man>
<man name="Hans">
    <attribute name="attr3">
    </attribute>
</man>
<man name="Max">
    <attribute name="attr4">
    </attribute>
</man>

所以当我运行我的代码时,我应该得到:attr1从true更改为false

共有1个答案

罗学林
2023-03-14

我找到了解决问题的方法:

public void validateBooleanVTD2(PropertyRule prop, int i) throws XPathParseException, XPathEvalException,
        NavException {
    int n = -1;
    String xPath = prop.getEntitiesObjects().get(i).getxPath(); // eg. /people/man/attribute[not(key)]
    String propertyChecked = prop.getTag(); // eg. mandatory 
    VTDGen parseRef = new VTDGen();
    VTDGen parseTest = new VTDGen();
    parseRef.parseFile(ref, false);
    parseTest.parseFile(test, false);
    VTDNav navigateRef = parseRef.getNav();
    VTDNav navigateTest = parseTest.getNav();
    AutoPilot autopilotRef = new AutoPilot();
    AutoPilot autopilotTest = new AutoPilot();
    autopilotRef.bind(navigateRef);
    autopilotTest.bind(navigateTest);
    autopilotRef.selectXPath(xPath);
    //Instant start = Instant.now();

    while ((n = autopilotRef.evalXPath()) != -1) {
        int nameIndexRef = navigateRef.getAttrVal("name");
        String nameRef = navigateRef.toNormalizedString(nameIndexRef);
        //System.out.println(navigateTest.toString(n + 2));
        //System.out.println(navigateTest.toString(n + 1));
        AutoPilot autopilotRefTestTag = new AutoPilot();
        AutoPilot autopilotTestTestTag = new AutoPilot();
        autopilotRefTestTag.bind(navigateRef);
        autopilotTestTestTag.bind(navigateTest);
        autopilotTestTestTag.selectXPath(xPath + "[@name='" + nameRef + "'][descendant::"+propertyChecked+"]"); // property in Test
        autopilotRefTestTag.selectXPath(xPath + "[@name='" + nameRef + "'][descendant::"+propertyChecked+"]"); // property in Ref
        if(autopilotRefTestTag.evalXPathToBoolean() == true && autopilotTestTestTag.evalXPathToBoolean() == false)
        {
            System.out.println(nameRef/* +":"+navigateRef.toString(n)+":"+propertyChecked + ":Updated:"+prop.getTrue2falseValue()+":Changed From True to False:"+prop.getTrue2falseDesc()*/);
        }
        if(autopilotRefTestTag.evalXPathToBoolean() == false && autopilotTestTestTag.evalXPathToBoolean() == true)
        {
            System.out.println(nameRef/* +":"+navigateRef.toString(n)+":"+propertyChecked + ":Updated:"+prop.getFalse2trueValue()+":Changed From False to True:"+prop.getFalse2trueDesc()*/);
        }

    }


}

我在循环中使用了另一个XPath来检查当前实体中是否是我要查找的实体。

 类似资料:
  • VTD-XML是一种新的XML处理API,它能够克服DOM和SAX的一些问题。VTD-XML能够在内存中对XML进行快速检查并提供XPath查询支持。 在它的主页上有详细的API描述,源代码,文档和例子。

  • 我试图使用以下代码使用XMLModifier删除一些节点。我以中间的空白结束。我怎么才能摆脱这个? } Sample.xml 我尝试使用以下代码,而不是xmlModifier.remove() 它失败,出现以下异常:- 注意:-使用vtd-xml_2_13.jar执行的示例代码

  • 我必须对VTD-XML库进行性能测试,以便不仅进行简单的解析,而且在解析中进行额外的转换。所以我有30MB的输入XML,然后用自定义逻辑将其转换为其他XML。因此,我想消除所有的想法,这减缓了整个过程,从我这边来(因为没有很好地使用VTD库)。我试图搜索优化提示,但找不到。我认为: '0'. 选择selectXPath或selectElement最好使用什么? > 使用不带名称空间的解析要快得多。

  • 我必须在这个xml中设置“count”属性的值: 我想使用这样的代码(VTDXML库)使用“Foo”更改myCount值: 这样我反而获得了 那不是我的目标因为我想要的是

  • Java VTD-XML具有以下API 我已经成功地将它用于简单的变量绑定,例如: 自动驾驶仪可以运行如下表达式 我的问题是: API说它将变量绑定到变量表达式。如何绑定到变量表达式?绑定到“表达式”的用法是什么?

  • 我对如何做到这一点有点困惑,所有的文档/示例都展示了如何读取和编辑xml文档,但似乎没有任何从头开始创建xml的明确方法,我宁愿不必将我的程序与虚拟xml文件一起发布以编辑一个。有什么想法吗?谢谢。