This has probably been answered else where but how do you get the character value of an int value?

Specifically I'm reading a from a tcp stream and the readers .read() method returns an int.

How do I get a char from this?

link|improve this question

75% accept rate
I admit this is a simple question but why the down vote. I did search and didn't find the answer on SO. And it's one of those it's easy if you know how questions. – Omar Kooheji May 7 '09 at 10:13
You didn't elaborate on what data are you sending and reading. Do you send binary bytes or Unicode characters? The readers .read() method returns an int. Yes, but it returns the character read, as an integer in the range 0 to 65535 (or -1, this is because I think int used instead of char). Maybe just using public int read(char[] cbuf) will solve the problem? – Vanuan May 7 '09 at 10:36
feedback

5 Answers

up vote 24 down vote accepted

If you're trying to convert a stream into text, you need to be aware of which encoding you want to use. You can then either pass an array of bytes into the String constructor and provide a Charset, or use InputStreamReader with the appropriate Charset instead.

Simply casting from int to char only works if you want ISO-8859-1, if you're reading bytes from a stream directly.

EDIT: If you are already using a Reader, then casting the return value of read() to char is the right way to go (after checking whether it's -1 or not)... but it's normally more efficient and convenient to call read(char[], int, int) to read a whole block of text at a time. Don't forget to check the return value though, to see how many characters have been read.

link|improve this answer
1  
+1 InputStreamReader does exactly what the OP is looking for. – Andrzej Doyle May 7 '09 at 9:52
2  
Downvoters: please give reasons... – Jon Skeet May 7 '09 at 16:34
I think this is not what the OP is asking about. He is using Reader's read method: java.sun.com/j2se/1.4.2/docs/api/java/io/Reader.html#read() The question he is asking is how to convert value returned by this method into char. – Vanuan May 7 '09 at 21:43
2  
If he's genuinely using Reader, that certainly makes a difference. It's not clear, given that he talks about a stream and a reader (with a lower case r) in the same sentence :( Have edited my answer to make this clear. – Jon Skeet May 7 '09 at 23:20
feedback

Maybe you are asking for:

Character.toChars(65) // returns ['A']

More info: http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Character.html#toChars(int)

link|improve this answer
+1 I think you are right. – Vanuan May 7 '09 at 10:52
2  
That's only valid if the integer in question is already a UTF-16 code point. We have no idea whether that's the case. – Jon Skeet May 7 '09 at 16:34
Yeah, that's right, but an IAE would be thrown in that case. – ATorras May 7 '09 at 17:35
@Atec: No, my point is that if he's just reading bytes from a stream (it's not clear) then converting by just casting or using toChars is usually inappropriate. If he's reading from a Reader, then it's fine. – Jon Skeet May 7 '09 at 23:21
feedback

It depends on what you mean by "convert an int to char".

If you simply want to cast the value in the int, you can cast it using Java's typecast notation:

int i = 97; // 97 is 'a' in ASCII
char c = (char) i; // c is now 'a'

If you mean transforming the integer 1 into the character '1', you can do it like this:

if (i >= 0 && i <= 9) {
char c = Character.forDigit(i, 10);
....
}
link|improve this answer
+1 Good answer, this helped me out! – BryceAtNetwork23 Feb 14 at 21:53
feedback

Simple casting:

int a = 99;
char c = (char) a;

Is there any reason this is not working for you?

link|improve this answer
Dangerous advice, if the text stream is not pure ASCII. See Jon Skeet's answer above. – sleske May 7 '09 at 9:54
1  
It might not work. But I think it would actually. The char data type stores UTF-16 coded value. So to cast char to int you need to do some transformations. But since the OP uses read() method which already returns UTF-16 coded value simple casting would work I think. Correct me if I wrong. – Vanuan May 7 '09 at 11:09
Sorry, I meant "from int to char" – Vanuan May 7 '09 at 21:39
feedback

This is entirely dependent on the encoding of the incoming data.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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