如何解决cvc-pattern-valid:Value''对于模式问题而言,这不是方面有效的

时间:2017-07-03 10:38:47

标签: java xml xsd sax

我正在尝试阅读xsd文件并将其投放到exception下方

cvc-pattern-valid: Value '' is not facet-valid with respect to pattern '[1-2][0-9]{3,3}(((0[1-9])|(1[0-2]))((0[1-9])|([0-2][0-9]|3[0-1])(([0-1][0-9]|2[0-3])([0-5][0-9]([0-5][0-9](\.[0-9]{1,4})?)?)?)?)?)?([+\-](0[0-9]|1[0-3])([0-5][0-9]))?' for type '#AnonType_valueTS'.

    final Schema schema = schemaFactory.newSchema(this.getClass().getClassLoader().getResource("/schemaorg_apache_xmlbeans/src/mySchema.xsd"));
      final Validator validator = schema.newValidator();
      final StreamSource xmlFile = new StreamSource(new ByteArrayInputStream(xmlString.getBytes("utf-8")));
      validator.validate(xmlFile);

validator.validate(xmlFile)部分正在抛出exception

任何想法?感谢您的帮助。

我已经看过以下内容: Value is not facet-valid with respect to pattern

Validating xml. Get the element name that throws cvc-enumeration-valid

1 个答案:

答案 0 :(得分:2)

您的XSD指定Value必须匹配不允许空字符串的指定正则表达式。

Value更改为符合XSD正则表达式的非空值,或将正则表达式更改为允许空字符串。