xxxxxxxxxx
int i = 1234;
String s = String.ValueOf(i)
xxxxxxxxxx
String s = String.ValueOf(x); //converts a int x to a String s
//or
String s = Integer(x).toString(); //converts a int x to a String s
xxxxxxxxxx
int number = 36789;
--->
String s1 = number+"";
String s2 = String.valueOf(number);
String s3 = Integer.toString(number);