I'm getting following exception on android 4.2.1 device : nexus 7
android 4.2.1
java.nio.charset.UnsupportedCharsetException: Cp858 at java.nio.charset.Charset.forName(Charset.java:303)
Android documentation has a list of guaranteed Character Sets, The guaranteed ones are:
You can also use availableCharsets() to get a list or isSupported(String) to check for specific sets.
You have any code to show us the exact problem? I believe you have to set the Charset (e.g. ISO-8859-1, utf-8, or etc)
Android documentation has a list of guaranteed Character Sets, The guaranteed ones are:
You can also use availableCharsets() to get a list or isSupported(String) to check for specific sets.