XMLStreamReader to StreamSource in java

813 Views Asked by At

I want to convert XMLStreamReader object to StreamSource object so that I can apply XSD validation. Can any one help me to convert this.

public XMLStreamReader getStreamReader(InputStream inputStream) {
    try {
        XMLInputFactory xif = XMLInputFactory.newInstance();
        return new XmlStreamReaderDelegate(xif.createXMLStreamReader(inputStream, "UTF-8"));
    } catch (XMLStreamException e) {
        //logger.info(XmlValidatorSettings.class,e.getMessage(),e.getMessage());
        throw new UnmarshallingException(e);
    }
}

I need to call this method to validate the XML against XSD.

public List<SAXParseException> validateSrcXmlAgainstSchema(Source xmlFile, String schemaFilePath) throws SAXException, IOException {
    List<SAXParseException> exceptions = new LinkedList<SAXParseException>();
    SchemaFactory schemaFactory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
    Schema schema = schemaFactory.newSchema(new File(schemaFilePath));
    // logger.debug("Schema Initialised for Schema located in : " + schemaFilePath);
    XmlValidationExceptionHandler validationErrorHandler = new XmlValidationExceptionHandler();
    Validator validator = schema.newValidator();
    validator.setErrorHandler(validationErrorHandler);
    // logger.debug("START - validate xml against schema ");
    validator.validate(xmlFile);
    // logger.debug("END - validate xml against schema ");
    exceptions = validationErrorHandler.getExceptionList();
    return exceptions;
    }

XmlStreamReaderDelegate class used to avoid XML case-sensitive issue.

public class XmlStreamReaderDelegate extends StreamReaderDelegate {

public XmlStreamReaderDelegate(XMLStreamReader xsr) {
    super(xsr);
}

@Override
public String getAttributeLocalName(int index) {
    return super.getAttributeLocalName(index).toLowerCase().intern();
}

@Override
public String getLocalName() {
    return super.getLocalName().toLowerCase().intern();
}

}

0

There are 0 best solutions below