Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the folowwing XSLT based on Xalan:

TransformerFactory factory = TransformerFactory.newInstance();
XalanErrorListener listener = new XalanErrorListener();
factory.setErrorListener(listener);

// Create transformer
StreamSource config = new StreamSource(xslPath);
Transformer transformer = factory.newTransformer(config);

// Create input / ouput
StreamSource source = new StreamSource(inputPath);
StreamResult result = new StreamResult(outputPath);

// Transform
transformer.transform(source, result);

My XalanErrorListener simply overrides error, fatalError and warning methods from the javax.xml.transform.ErrorListener class and logs the exception:

public final class XalanErrorListener implements ErrorListener {

static final Logger LOGGER = LoggerFactory.getLogger(XalanErrorListener.class);

@Override
public void error(TransformerException exception) throws TransformerException {
    LOGGER.error(exception);
}

@Override
public void fatalError(TransformerException exception) throws TransformerException {
    LOGGER.error(exception);
}

@Override
public void warning(TransformerException exception) throws TransformerException {
    LOGGER.warn(exception);
}
}

Yet, when executing on a badly encoded file, I get the following message in the console:

(Location of error unknown)
  com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequenceException: 
    Invalid byte 2 of 2-byte UTF-8 sequence.

The program executes normally: no exception is thrown or logged and the generated file is empty!

How can I catch the exception to handle it the way I want?

share|improve this question
1  
So XalanErrorListener is a class you have written? If so, you must show that class... – home Oct 8 '12 at 13:49
The edit is done! – Vakh Oct 8 '12 at 14:19

2 Answers

The ErrorListener you supply to Xalan catches transformation errors, but it does not catch XML parsing errors. For that you need to supply an ErrorHandler to the Xerces parser.

share|improve this answer
How can I do that? – Vakh Oct 8 '12 at 16:28
Supply the input to the transformation as a SAXSource; create the XMLReader in the SAXSource yourself; initialize its ErrorHandler property. – Michael Kay Oct 8 '12 at 17:16
up vote 0 down vote accepted

The problem came from the fact that the ErrorListener needed to be set to the Transformer and not the TransformerFactory:

Transformer transformer = factory.newTransformer(config);
transformer.setErrorListener(listener);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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