java
  • xml
  • xpath
  • 2011-04-14 70 views 3 likes 
    3

    里面我有books.xml文件,其中包含作者名和书名。我用下面的代码来查询books.xml如何使用Java字符串变量的XPath查询

    XPathFactory factory = XPathFactory.newInstance(); 
    XPath xpath = factory.newXPath(); 
    XPathExpression expr 
        = xpath.compile("//book[author= 'Larry Niven']/title/text()"); 
    

    现在,而不是直接把名称查询,如果我想通过它在程序运行作为一个字符串变量如何做到这一点的同时。只是把字符串变量名称不工作!

    +0

    你为什么不能建立XPath表达式动态,我的意思是像 “//书[作者= '” + AUTHORNAME + “'] /标题/文本()”? – 2011-04-14 12:37:45

    +0

    是那是一个好的开始。我也试试。谢谢。 – JavaBits 2011-04-14 12:48:08

    +0

    如何将变量注册到XPath评估上下文完全取决于XPath引擎API。 – 2011-04-14 16:04:05

    回答

    -2
    String rawXPath = "//book[author= '" + larrysName + "']/title/text()"; 
    

    String rawXPath = String.format("//book[author= '%s']/title/text()", larrysName); 
    

    其中larrysName是类型String从某处来的变量。

    +0

    谢谢你完美的作品。 – JavaBits 2011-04-14 12:45:49

    +2

    -1不幸的是,这对于像_O'Hara_或任何其他包含引号的文本这样的名字来说并不完美。 – McDowell 2011-04-14 13:28:33

    +1

    @McDowell:好点。 – khachik 2011-04-14 13:36:13

    0

    如果你想有一个现成的实现,你可以使用支持的变量声明公共JXPathhttp://commons.apache.org/jxpath/users-guide.html#Variables

    6

    这里的问题是,当你有一个像笔者臭名昭著拉里“狼牙棒” O'Niven

    在这种情况下,你需要躲避变量,在这个天真的实现:

    String xml = 
        "<xml><foo bar=\"Larry &quot;Basher&quot; O'Niven\">Ringworm</foo></xml>"; 
    String query = 
        String.format("//foo[@bar=%s]", escape("Larry \"Basher\" O'Niven")); 
    System.out.println(query); 
    String book = XPathFactory.newInstance() 
        .newXPath() 
        .evaluate(query, new InputSource(new StringReader(xml))); 
    System.out.println(query + " > " + book); 
    
    +0

    非常感谢您的帮助 – JavaBits 2011-04-14 19:19:41

    4

    你其实可以同时使用:

    public static String escape(String s) { 
        Matcher matcher = Pattern.compile("['\"]") 
         .matcher(s); 
        StringBuilder buffer = new StringBuilder("concat("); 
        int start = 0; 
        while (matcher.find()) { 
         buffer.append("'") 
          .append(s.substring(start, matcher.start())) 
          .append("',"); 
         buffer.append("'".equals(matcher.group()) ? "\"'\"," : "'\"',"); 
         start = matcher.end(); 
        } 
        if (start == 0) { 
         return "'" + s + "'"; 
        } 
        return buffer.append("'") 
         .append(s.substring(start)) 
         .append("'") 
         .append(")") 
         .toString(); 
        } 
    

    这可使用此代码来证明XPath中的自定义函数和变量 - 但是对于许多用途来说,快速入侵可能会更有效率。

    下面是一些代码,我开发为我们的学生学习的工具。它可以让你这样做:

    // create some variable we want to use in the xpath 
    xPathVariableAndFunctionResolver.newVariable("myNamespace", "id", "xs:string", "l2"); // myNamespace is declared in the namespace context with prefix 'my' 
    
    // create an XPath expression 
    String expression = "//did:Component[@id=$my:id]"; // variable $namespace:name 
    XPathExpression findComponents = xPathFunctionAndVariableOperator.compile(expression); 
    
    // execute the XPath expression against the document 
    NodeList statements = (NodeList)findComponents.evaluate(document, XPathConstants.NODESET); 
    

    和XPath函数一样。该代码,第一个为正常的XPath evalutation包装:

    public class XPathOperator { 
    
        protected XPath xPath; 
        protected XPathFactory xPathFactory; 
    
        private Hashtable<String, XPathExpression> compiled = new Hashtable<String, XPathExpression>(); 
    
        protected void initFactory() throws XPathFactoryConfigurationException { 
         xPathFactory = XPathFactory.newInstance(XPathConstants.DOM_OBJECT_MODEL); 
        } 
    
        protected void initXPath(NamespaceContext context) { 
         xPath = xPathFactory.newXPath(); 
         xPath.setNamespaceContext(context); 
        } 
    
        public XPathOperator(NamespaceContext context) throws XPathFactoryConfigurationException { 
         initFactory(); 
         initXPath(context); 
        } 
    
        public Object evaluate(Document document, String expression, QName value) throws XPathExpressionException { 
    
         // create an XPath expression - http://www.zvon.org/xxl/XPathTutorial/General/examples.html 
         XPathExpression findStatements = compile(expression); 
    
         // execute the XPath expression against the document 
         return (NodeList)findStatements.evaluate(document, value); 
        } 
    
        public XPathExpression compile(String expression) throws XPathExpressionException { 
         if(compiled.containsKey(expression)) { 
          return (XPathExpression) compiled.get(expression); 
         } 
    
         XPathExpression xpath = xPath.compile(expression); 
    
         System.out.println("Compiled XPath " + expression); 
    
         compiled.put(expression, xpath); 
    
         return xpath; 
        } 
    } 
    

    然后我们使用命名空间的增加,当然自定义变量和函数的概念,:

    public class XPathFunctionAndVariableOperator extends XPathOperator { 
    
         public XPathFunctionAndVariableOperator(NamespaceContext context, XPathVariableResolver xPathVariableResolver, XPathFunctionResolver xPathFunctionResolver) throws XPathFactoryConfigurationException { 
    
        super(context); 
    
         xPath.setXPathVariableResolver(xPathVariableResolver); 
         xPath.setXPathFunctionResolver(xPathFunctionResolver); 
        } 
    } 
    

    这不会有太大的乐趣没有变量和函数解析器:

    public class XPathVariableAndFunctionResolver implements XPathVariableResolver, XPathFunctionResolver { 
    
        private Hashtable functions = new Hashtable(); 
        private Hashtable variables = new Hashtable(); 
    
        private SchemaDVFactory factory = SchemaDVFactory.getInstance(); 
    
        public XPathFunction resolveFunction(QName functionName, int arity) { 
         Hashtable table = (Hashtable)functions.get(functionName.getNamespaceURI()); 
         if(table != null) { 
          XPathFunction function = (XPathFunction)table.get(functionName.getLocalPart()); 
          if(function == null) { 
           throw new RuntimeException("Function " + functionName.getLocalPart() + " does not exist in namespace " + functionName.getNamespaceURI() + "!"); 
          } 
          System.out.println("Resolved function " + functionName + " with " + arity + " argument(s)"); 
          return function; 
         } 
         throw new RuntimeException("Function namespace " + functionName.getNamespaceURI() + " does not exist!"); 
        } 
    
        /** 
        * 
        * Adds a variable using namespace and name, primitive type and default value 
        * 
        * @param namespace 
        * @param name 
        * @param datatype  one of the built-in XML datatypes 
        * @param value 
        * @throws InvalidDatatypeValueException if value is not of correct datatype 
        */ 
    
        @SuppressWarnings("unchecked") 
        public void newVariable(String namespace, String name, String datatype, String value) throws InvalidDatatypeValueException { 
    
         int index = datatype.indexOf(":"); 
         if(index != -1) { 
          datatype = datatype.substring(index+1); 
         } 
         XSSimpleType builtInType = factory.getBuiltInType(datatype); 
    
         if(builtInType == null) { 
          throw new RuntimeException("Null type for " + datatype); 
         } 
    
         ValidationState validationState = new ValidationState(); 
         ValidatedInfo validatedInfo = new ValidatedInfo(); 
    
         builtInType.validate(value, validationState, validatedInfo); 
    
         System.out.println("Defined variable " + name + " as " + datatype + " with value " + value); 
    
         Hashtable table; 
         if(!variables.containsKey(namespace)) { 
          table = new Hashtable(); 
          variables.put(namespace, table); 
         } else { 
          table = (Hashtable)variables.get(namespace); 
         } 
    
         table.put(name, new Object[]{validatedInfo, builtInType}); 
        } 
    
        public void newVariableValue(String namespace, String name, String value) throws InvalidDatatypeValueException { 
         ValidationState validationState = new ValidationState(); 
    
         Hashtable table; 
         if(!variables.containsKey(namespace)) { 
          throw new RuntimeException("Unknown variable namespace " + namespace); 
         } else { 
          table = (Hashtable)variables.get(namespace); 
         } 
    
         Object[] bundle = (Object[])table.get(name); 
         ValidatedInfo validatedInfo = (ValidatedInfo)bundle[0]; 
         XSSimpleType builtInType = (XSSimpleType)bundle[1]; 
         builtInType.validate(value, validationState, validatedInfo); // direct reference transfer of value 
    
         System.out.println("Assigned value " + validatedInfo.normalizedValue + " to variable " + name); 
        } 
    
        public Object resolveVariable(QName variableName) { 
    
         Hashtable table; 
         if(!variables.containsKey(variableName.getNamespaceURI())) { 
          throw new RuntimeException("Unknown variable namespace " + variableName.getNamespaceURI()); 
         } else { 
          table = (Hashtable)variables.get(variableName.getNamespaceURI()); 
         } 
    
         Object[] bundle = (Object[])table.get(variableName.getLocalPart()); 
         if(bundle != null) { 
          ValidatedInfo var = (ValidatedInfo)bundle[0]; 
    
          if(var != null) { 
           switch(var.actualValueType) { // some types omitted, customize your own 
           case XSConstants.INTEGER_DT: 
           case XSConstants.DECIMAL_DT: 
           case XSConstants.INT_DT: 
           case XSConstants.LONG_DT: 
           case XSConstants.SHORT_DT: 
           case XSConstants.BYTE_DT: 
           case XSConstants.UNSIGNEDBYTE_DT: 
           case XSConstants.UNSIGNEDINT_DT: 
           case XSConstants.UNSIGNEDLONG_DT: 
           case XSConstants.UNSIGNEDSHORT_DT: 
            return new Integer(var.normalizedValue); 
           case XSConstants.DATE_DT: 
           case XSConstants.DATETIME_DT: 
           case XSConstants.GDAY_DT: 
           case XSConstants.GMONTH_DT: 
           case XSConstants.GMONTHDAY_DT: 
           case XSConstants.GYEAR_DT: 
           case XSConstants.GYEARMONTH_DT: 
           case XSConstants.DURATION_DT: 
           case XSConstants.TIME_DT: 
            return new Date(var.normalizedValue); 
           case XSConstants.FLOAT_DT: 
            return new Float(Float.parseFloat(var.normalizedValue)); 
           case XSConstants.DOUBLE_DT: 
            return new Double(Double.parseDouble(var.normalizedValue)); 
           case XSConstants.STRING_DT: 
           case XSConstants.QNAME_DT: 
            return var.normalizedValue; 
           default: 
            throw new RuntimeException("Unknown datatype " + var.actualValueType + " for variable " + variableName + " in namespace " + variableName.getNamespaceURI()); 
           } 
          } 
         } 
         throw new RuntimeException("Could not resolve value " + variableName + " in namespace " + variableName.getNamespaceURI()); 
        } 
    
        public void addFunction(String namespace, String name, XPathFunction function) { 
         Hashtable table; 
         if(!functions.containsKey(namespace)) { 
          table = new Hashtable(); 
          functions.put(namespace, table); 
         } else { 
          table = (Hashtable)functions.get(namespace); 
         } 
         table.put(name, function); 
        } 
    
    } 
    

    的功能显然不能被包含在上述范围内,因为通常运行自定义代码(即整个的一点是,你写你的O WN类),这样的东西去像

    public abstract class XPathFunctionImpl implements XPathFunction { 
    
        /** 
        * This function is called by the XPath expression as it implements the interface XPathFunction 
        */ 
    
        protected int numberArguments; 
    
        public Object evaluate(List args) throws XPathFunctionException { 
         if(args.size() == numberArguments) { 
          return evaluateImpl(args); 
         } 
         throw new RuntimeException("Illegal number of arguments for " + this); 
        } 
    
        public abstract Object evaluateImpl(List args) throws XPathFunctionException; 
    
    } 
    

    然后在工具/子类evaluateImpl(你自己的逻辑。)不知何故。

    这肯定使字符串追加显得相当...吸引力;)注:此代码是几年前的,有可能存在这样做的所有一个更好的办法。

    相关问题