I have an int int the range 0-255, and I want to create a String (of length 1) so that the ASCII value of this single character is the specified integer.
Is there a simple way to do this in Java ?
example:
65 -> "A"
102 -> "f"
|
|
|
|||
|
|
|
Assuming the integer is, as you say, between 0 and 255, you'll get an array with a single character back from Using |
|||||||
|
|
new String(new char[] { 65 })) You will end up with a string of length one, whose single character has the (ASCII) code 65. In Java chars are numeric data types. |
|||
|
|
|
str = "25"; int i = Integer.valueOf(str).intValue(); or int i = Integer.parseInt(str); |
|||
|