Simple question to ask

What this exception isjava.io.unsupportedEncodingException:ISO-8859-15-FDISI am getting this exception but can not find it any where to know the details of it.
[195 byte] By [abdulqadeerbasit] at [2007-9-26 6:50:05]
# 1
What are you trying to do when you get this exception, plus could you post the complete stack trace?
Oaq at 2007-7-1 16:17:08 > top of Java-index,Archived Forums,Java Programming...
# 2
Hi what is the code that throws this exception? If you post that sb. might be able to help.Phil
PhHein at 2007-7-1 16:17:08 > top of Java-index,Archived Forums,Java Programming...
# 3

That exception means that you are trying to use a character encoding that is not supported.

The list of encodings is in http://java.sun.com/j2se/1.3.0/docs/guide/intl/encoding.doc.html - which does include "ISO-8859-15-FDIS" in the extended encoding set. Is it possible that you didn't download the international version of the SDK?

jsalonen at 2007-7-1 16:17:08 > top of Java-index,Archived Forums,Java Programming...