Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I get a char array from a socket :

char[] cbuf = new char[3];
inputStream.read(cbuf, 0, 3); // read 3 chars in buffer "cbuf", offset = 0

Then when I print that :

System.out.println("r:"+(int)cbuf[0]+" g:"+(int)cbuf[1]+" b:"+(int)cbuf[2]);

I get at some point :

...
r:82 g:232 b:250
r:82 g:232 b:250
r:66 g:233 b:8224

The 8224 value is way more than 255, how can a char contain this value ???

Thank you

share|improve this question
The problem is that you're reading the data through a 'Reader' instead of an 'InputStream'. A Reader translates the bytes into characters using an encoding, which in your case is probably windows-1252. See my answer below. – Adrian Pronk Sep 22 '10 at 0:56
1  
I assume you come from a C background where the sizeof(char) == sizeof(byte), however even in C I would suggest you use unsigned byte as the values of r/g/b are not characters. – Peter Lawrey Sep 22 '10 at 17:59

6 Answers

up vote 8 down vote accepted

The char primitive in Java in 16 bits wide, to accommodate characters outside the standard ASCII range, using Unicode.

It looks like you're trying to store RGB values in a char[3]. May I suggest a byte[3], or java.awt.Color?

Color c = new Color(255, 255, 240);
share|improve this answer
1  
Don't you mean UTF-16? – sje397 Sep 22 '10 at 0:22
@sje397: No, I mean Modified UTF-8 and CESU-8. – Michael Petrotta Sep 22 '10 at 0:26
2  
@Michael Petrotta: No, you mean UTF-16. It's true that Java also uses modified UTF-8, but not for the char type: it simply can't because that would require more than 16 bits for any character >= U+0800. Java 1.4 and earlier uses UCS-2, Java 1.5 switched to UTF-16. – Michael Madsen Sep 22 '10 at 1:00
@Stephen, @Michael: of course you're right - logically, it has to be so. I've edited my answer. – Michael Petrotta Sep 22 '10 at 1:18
2  
int red = 0xFF & bytebuf[0]; – KarlP Sep 22 '10 at 15:05
show 7 more comments

There is no read(char[], int, int) method on InputStream. You must be calling that on a Reader sub-class (such as InputStreamReader). InputStreamReader automatically converts bytes to characters using the platform default character encoding which in your case looks like it's windows-1252.

The character you received, 8224 is Unicode character U+2020 Dagger '†'. This was probably translated from byte 0x86 (134) using the windows-1252 character encoding.

If you're reading a file containing stuff that isn't text, you need to make sure that you don't read it with a subclass of Reader but use a subclass of InputStream instead. Alternatively, you can use an InputStreamReader and specify a character encoding like ISO-8859-1 that will map every byte to a char with the same numeric value.

share|improve this answer
1  
To clarify: Find where variable "inputStream" [sic] is created; most likely its created using socket.getInputStream(). Remove the wrapped InputStreamReader and make sure that the raw InputStream is used. Read into a byte[] instead. Make sure that the protocol actually sends 3 bytes in the order you think; And finally, consider using Color. – KarlP Sep 22 '10 at 15:05
Thanks +1. (I had no idea char was 16 bits, so I accepted the other answer) – Matthieu Sep 22 '10 at 15:15

The char type in Java is 16-bit.

If you are looking for an 8 bit datatype consider using byte.

share|improve this answer
3  
And it contains Unicode code points. – Thilo Sep 22 '10 at 0:11
1  
Not if you use characters outside the BMP. What char contains is UTF-16 code units. – dan04 Sep 22 '10 at 4:35

As people have already pointed out, you want to read bytes, not chars (chars are 16 bits in Java), and make sure you are actually using an InputStream and not a Reader.

I also want to point out something that is not directly related to your question: When calling InputStream.read(byte[]) or InputStream.read(byte[], int, int) to read several bytes, do not assume that all requested bytes have been read upon return. The call to read may return as soon as some bytes are available. You should always check the return value to find out how many bytes have actually been read.

The same applies to the read methods in Reader.

share|improve this answer

Java uses UTF (not ASCII) to store chars, UTF is 16-bits long so it can contain values up to 65.535.

share|improve this answer
3  
Not entirely true. UTF-16 is 16 bits 'long'. UTF-8 is 8 bits 'long'. Although this is a flexible use of the word 'long' as each can have longer sequences for certain code points. – sje397 Sep 22 '10 at 0:20
So I guess Java uses UTF-16, righto? – Edgar Sánchez Sep 22 '10 at 7:05
JLS 3.1: "...The Java programming language represents text in sequences of 16-bit code units, using the UTF-16 encoding. ..." java.sun.com/docs/books/jls/third_edition/html/… – Carlos Heuberger Sep 22 '10 at 12:50

Chars are unsigned 16bit ints in Java. Though technically, if you are receiving values from untrusted bytecode you must be prepared to deal with arbitrary 32bit values as the JVM doesn't do any verification of integer argument ranges.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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