This example help you to convert ASCII to string in java.
This example help you to convert ASCII to string in java.
Description:
This tutorial demonstrate how to convert ASCII to string .
Code:
public class IntToChar{ public static void main(String[] args) throws Exception { int i = 65;
String aChar = new Character((char) i).toString();
System.out.println(aChar);
}
}