Given a number:
int number = 1234;
Which would be the "best" way to convert this to a string:
String stringNumber = "1234";
I have tried searching (googling) for an answer but no many seemed "trustworthy".
|
|
|
There are multiple ways:
|
|||||||||||||
|
|
Integer class has static method toString() - you can use it:
|
|||
|
|
|
This will do. Pretty trustworthy. : )
|
|||
|