vote up 0 vote down star

Is there a way to convert an ANSI string to UTF using Java.

I have a custom serializer that uses readUTF & writeUTF methods of the DataInputStream class to deserialize and serialze string. If i receive a string encoded in ANSI and is too long, ~100000 chars long i get the error;

Caused by: java.io.UTFDataFormatException: encoded string too long: 106958 bytes

However in my Junit tests i'm able create a string with 120000 'a's and it works perfectly

I have checked the following posts but still having errors;

flag

Do you mean ASCII? If so it is already in UTF-8 - could you explain a bit more. Show the errors etc. – Mark Sep 23 at 14:03
1  
No ANSI != ASCII. ANSI is a whole collection of codepages. – Aaron Digulla Sep 23 at 14:22
due to size restrictions on readUTF and writeUTF i have modified my serializer send text in parts – n002213f Oct 3 at 11:07

3 Answers

vote up 4 vote down check

This error is not caused by character encoding. It means the length of the UTF data is wrong.

EDIT: Just realized this is a writing error, not reading error.

The UTF length is only 2 bytes so it can only hold 64K UTF-8 bytes. You are trying to writing 100K, it's not going to work.

This limit is hardcoded and no way to get around this,

if (utflen > 65535)
    throw new UTFDataFormatException(
            "encoded string too long: " + utflen + " bytes");
link|flag
Interesting, but why do all my tests with more characters pass? – n002213f Sep 23 at 14:50
You have to show me your test cases. They are wrong. See my edits. – ZZ Coder Sep 23 at 14:52
i used the following code to generate the test string; StringBuffer sb2 = new StringBuffer(); for (int i=0; i < 120000;i++) { sb2.append("a"); } String longString2 = sb2.toString(); – n002213f Sep 23 at 14:59
You can create long strings, until memory is out. You just can't write long strings using writeUTF(). Write it your own way with a 4 byte length header. – ZZ Coder Sep 23 at 15:28
@ZZ_Coder - noted, thanks – n002213f Sep 28 at 4:44
vote up 2 vote down
byte[] asciiBytes = ...;
String unicode = new String(asciiBytes, "US-ASCII");
byte[] utfBytes = unicode.getBytes("UTF-8");
link|flag
It seems I misread the original question regarding ASCII vs. ANSI, and with the latest question edits, my answer is not really relevant. – iammichael Sep 24 at 13:42
vote up 1 vote down

Which ANSI codepage? There are lots of different character encodings which all refer to "ANSI". The DOS codepage is 437 (without the drawing symbols). If you use codepage 850, this will work:

String unicode = new String(bytes, "IBM850");

(where bytes is an array with the ANSI characters). After that, you can convert this string into a byte array with any encoding using unicode.getBytes(encoding).

Windows often uses the codepage 1252 (use "windows-1252" for that).

link|flag
tried it but does not work, i get the same error. Is there a way to check the encoding in a string so that i can be sure its ANSI? – n002213f Sep 23 at 15:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.