Find supported encodings at runtime
Is it possible to find out the list of characters encodings (UTF-8, cp1252) supported by the JVM dynamically at runtime?
I am aware that there is a list of supported encodings listed on the Sun site for Sun's JVM. However, I also know that the supported encodings can vary depending upon the implementation of the JVM. Is there a method that would allow me to get all the supported encodings at runtime? Thanks :)

