Reputation: 2017
In using SAXBuilder to read in an XML document, what are the supported character encodings that the reader can support.
For example;
Thanks.
Upvotes: 1
Views: 459
Reputation: 17648
Java supported encodings will depend on the JVM. Remember that the InputStream
class is used by the readers, so depending on your JVM, different encodings will work.
See an exemplary list here: Java 6 Supported Encodings
Upvotes: 2