Hello,
I am trying this:
byte[] b = String.getByte("ASCII") and get an UnsupportedEncodingException Exception
String fName = new String(b,"ASCII");
- got the same when used
byte[] b = String.getByte("ISO8859_1");
String fName = new String(b,"ISO8859_1");
Appreciate any help.