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

Do any of Apache's (or other) Java libraries include an implementation of org.xml.sax.ContentHandler that simply generates the XML indicated by the SAX events?

Preferably, this would be done in a class which is customizable either through open source code, extensibility, or hooks for adding behavior.

share|improve this question
Thanks for the clues. It may be a week before I can get my head back into this part of the code. I'll accept an answer after I research them. – BPS Aug 15 '11 at 12:44

2 Answers

up vote 2 down vote accepted

My guess is that if you have a SAXSource and a StreamResult and perform an identity transformation, you basically get what you want (although hidden behind quite impenetrable code). This is my interpretation of the question title, anyway.

TransformerFactory.newInstance().newTransformer().transform(source, result);
share|improve this answer
Following through with this clue, I found this: link I think this is on the track I wanted. I'll accept this and ask a related question now. :) – BPS Aug 15 '11 at 15:39

Does org.apache.xml.serialize.XMLSerializer (available in the standard JDK as com.sun.org.apache.xml.internal.serialize.XMLSerializer) cover your needs?

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.