[JAVA] – How to validate a XML ?

For do this is easy :

DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); 
factory.setValidating(true);
factory.setNamespaceAware(true);
factory.setAttribute("http://java.sun.com/xml/jaxp/properties/schemaLanguage", "http://www.w3.org/2001/XMLSchema");

 

Leave a comment