Posted By:
Steven_Branker
Posted On:
Thursday, January 10, 2002 09:20 PM
I ended up doing the following:
byte[] byte_string = s.getBytes();
try{
String unicodeString = new String(byte_string, "ASCII");
out.print(unicodeString);
}catch(UnsupportedEncodingException ex)
{
out.print(". Sorry. The rest of the message contained unsupported text.");
}