我正在尝试阅读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
答案 0 :(得分:2)
您的XSD指定Value
必须匹配不允许空字符串的指定正则表达式。
将Value
更改为符合XSD正则表达式的非空值,或将正则表达式更改为允许空字符串。