Method: String.valueOf(int type value)
Usage example:
public static void main(String args[]) {
int a = 100;
System.out.println(String.valueOf(a));
}
Hope it helps you .