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?
|
feedback
|
|
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 Simply casting from EDIT: If you are already using a | |||||||||||||||
feedback
|
|
Maybe you are asking for:
More info: http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Character.html#toChars(int) | |||||||||||
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:
If you mean transforming the integer 1 into the character '1', you can do it like this:
| ||||
|
feedback
|
|
Simple casting:
Is there any reason this is not working for you? | |||||||||
feedback
|
public int read(char[] cbuf)will solve the problem? – Vanuan May 7 '09 at 10:36