number to string java function code example
Example 1: java how to cast int to String
int i = 1234;
String s = String.ValueOf(i)
Example 2: java int to string
Integer.toString(n) // converts n to String
int i = 1234;
String s = String.ValueOf(i)
Integer.toString(n) // converts n to String