javiermonleon
Programmer
I need to apply XSLT transformations to XML documents with UTF-8 encoding for generating XML documents with ISO-8859-1 encoding, without using the Charset class. The class that makes XSLT transformations is Transformer, but it generates XML documents in UTF-8 encoding. I could manipulate it with the Charset class and transform it to ISO-8859-1, but I can't use the java.nio.* and sun.nio.* packages because I only can work with SDK 1.2.2 (stupid problem that you can find on my IDE, the IBM VisualAge for Java, don't use it if you don't need).
Do you know some class that makes multi-encoding XSLT transformations? Or, alternative solution, do you know where can I find the java.nio.* and sun.nio.* source (*.java) packages to write my own encoding-decoding classes?
Thanks for all. It is really a stupid, horrible trouble due to VisualAge IDE.
Do you know some class that makes multi-encoding XSLT transformations? Or, alternative solution, do you know where can I find the java.nio.* and sun.nio.* source (*.java) packages to write my own encoding-decoding classes?
Thanks for all. It is really a stupid, horrible trouble due to VisualAge IDE.