My byte array contains the following data:
7 0 5 0 0 0 5 0 5 0 5 0 5 0 5 0 5 0 0 0
I want to convert this to a string such that the string is "\x07\x00\x05\x00..." (each element in the sequence represents the numeric value of an ASCII character in the string). Another example: 97 98 99 should be converted to "abc".
I am using:
String s = new String(byteArray,4);
System.out.println(s);
but the output is some non printable characters:
:ЇЀЅЀЀЀЅЀЅЀЅЀЅЀЅЀЅЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀЀ
Even when I change the encoding in (byteArray, somenumber) I was getting the same result (non printable characters). How can I fix this?
7 0 5 0 ...contains no printable ASCII characters if each byte in the array represents an ASCII character value. You probably want to usenew String(data, "US-ASCII"). – user166390 Jun 25 '11 at 6:57