我需要验证字符串xpath表达式中的数据。
SimpleVariableContext svc=new SimpleVariableContext();
svc.setVariableValue("part1", xpathBodyElements[0]);
String completedXPath="$part1";
BaseXPath contextpath=new BaseXPath(completedXPath,nav);
contextpath.setVariableContext(svc);
现在我有了经过验证的Xpath对象。我有一个包含xml结构的OMElement。我想获得basexpath中定义的特定元素。如何使用BaseXPath对象访问OMElement?
我可以将BaseXpath对象转换为AxiomXPAth元素吗?