change encoding of avalon SAX parser

2003-02-06 Thread Lionel Crine
I 'd like to change the encoding in the header of my file. How can I do that. For example with DOM I do : TransformerFactory tFactory = TransformerFactory.newInstance(); Transformer transformer = tFactory.newTransformer(); java.util.Properties properties = transformer.getOutputProperties();

Re: change encoding of avalon SAX parser

2003-02-06 Thread Oskar Casquero
Try using xsl:output encoding="ISO-8859-1"/ after the xml declaration in the stylesheet Oskar