SchemaFactory factory = SchemaFactory.newInstance("http://www.w3.org/2001/XMLSchema");
Schema schema = factory.newSchema(xmlSchema);
Validator validator = schema.newValidator();
Source source = new StreamSource(myXmlFile);
try {
validator.validate(source);
return null;
}catch (SAXException ex) {
String validationMessage = ex.getMessage();
return validationMessage;
}
但是当XML无效时,消息总是如下所示:
cvc-minLength-valid: Value '-' with length = '1' is not facet-valid with respect to minLength '2' for type '#AnonType_xLgrTEndereco'.
有没有办法以我的语言返回用户友好的消息,而无需以编程方式翻译消息?
UPDATE
这是XSD中用于发生消息的字段的一段代码:
你可以看到它甚至有一个描述来返回字段的“名称”(Logradouro),但模式验证器似乎不承认它.
最佳答案
这对于消息来说是没有帮助的,这对于API来说是不可避免的,但API至少提供了一种指定错误发生位置的方法.你可以做点什么
原文链接:https://www.f2er.com/java/437246.htmlreturn String.format("%d:%d %s",ex.getLineNumber(),ex.getColumnNumber(),ex.getMessage());
把你的信息改成更像的东西
9:13 cvc-minLength-valid: Value '-' with length = '1' is not facet-valid with respect to minLength '2' for type '#AnonType_xLgrTEndereco'.
这将告诉你看第9行第13列找到无效.
至少,这将允许您的消息准确指定错误的位置.