+ 2
How do we convert from int to string in java?
5 Answers
+ 6
Common ways:
String a = "" + theNumber;
String b = String.valueOf(theNumber);
+ 3
Here they show many different ways:
http://www.geeksforgeeks.org/different-ways-for-integer-to-string-conversions-in-java/
+ 2
thanks a lot
+ 2
type String that's it