I am writing some unit tests that are deliberately passing bad strings to the Java DOM XML parser.

E.g.

DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();

String message_xml = ""; // Empty string, not valid XML!!!
ByteArrayInputStream input = new ByteArrayInputStream(message_xml.getBytes());
Document doc = db.parse(input);

This is correctly throwing a SAXParseException (which is what my unit test expects). But it is also writing a message to System.err (stderr) in the Java console:

[Fatal Error] :1:1: Premature end of file.

Is there any way to configure the XML parser to NOT write to stderr?

I'm using Java 1.6SE.

link|improve this question

73% accept rate
Try configuring the package's loggers? But why does it matter--they're unit tests. – Dave Newton Oct 7 '11 at 18:52
feedback

1 Answer

up vote 5 down vote accepted

Install your own ErrorHandler:

db.setErrorHandler(new ErrorHandler() {
    @Override
    public void warning(SAXParseException e) throws SAXException {
        ;
    }

    @Override
    public void fatalError(SAXParseException e) throws SAXException {
        throw e;
    }

    @Override
    public void error(SAXParseException e) throws SAXException {
        throw e;
    }
});
link|improve this answer
Awesome, works great, thanks! Only on StackOverflow can you get an answer like this so quickly. – jfritz42 Oct 7 '11 at 20:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.