Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using this code to generate contents file.

try {
        StreamResult result = new StreamResult();
        TransformerFactory tf = TransformerFactory.newInstance();
        Templates templ =  tf.newTemplates(xsltSource);
        Transformer transf = templ.newTransformer();
        for (String item: groups){
            item = item.replaceAll(" ", "-").toLowerCase();
            result.setOutputStream(new FileOutputStream(path+item+".html"));
            transf.clearParameters();
            transf.setParameter("group", item);
            transf.transform(xmlSource, result);
        }
    } catch (TransformerConfigurationException e) {
    throw new SinkException(e.getMessage());
    } catch (TransformerException e) {
    throw new SinkException(e.getMessage());
    }

But on second iteration I have an exception

ERROR: javax.xml.transform.TransformerException: com.sun.org.apache.xml.internal.utils.WrappedRuntimeException: Read error

Cann't understand what is the reason?

share|improve this question
A Templates object only need to be created once. Try moving that out of the loop. – Thorbjørn Ravn Andersen Mar 19 '10 at 18:32
It didn't help. Any other ideas? – Artic Mar 19 '10 at 19:01
Why don't you add more lines of your code? and Stacktrace reported during Exception? – ring bearer Mar 19 '10 at 19:18
What do you want being clarified? – Artic Mar 19 '10 at 19:22

1 Answer

up vote 0 down vote accepted

Thank a lot for assistance. Th error was in not properly closed Source resource. Was:

Source xmlSource = new StreamSource(new FileInputStream(path+Constants.MANIFEST_FILE_NAME));

Fixed:

Source xmlSource = new StreamSource(path+Constants.MANIFEST_FILE_NAME);

share|improve this answer
This is why I requested more of your code. See this bit was missing from initial post. The fragment was apparently error free and there is no easy way to guess what would have h append prior to that. – ring bearer Mar 19 '10 at 19:40

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.