I\'m working on a project where all conversions from int to String are done like this:
int
String
int i = 5; String strI = \"\" + i; >
int i = 5; String strI = \"\" + i;
It depends on how you want to use your String. This can help:
String total = Integer.toString(123) + Double.toString(456.789);