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;
Using "" + i is the shortest and simplest way to convert a number to a string. It is not the most efficient, but it is the clearest IMHO and that is usually more important. The simpler the code, the less likely you are to make a mistake.