int i = 5;
String strI = "" + i;
Although the above mentioned method does convert an integer to string but there are other ways too for doing the same task:
1. int i = 5;
String strI = Integer.toString(i); #Converts an integer to string
2. int i = 5;
String strI = String.valueOf(i); #Gets a string representation of an object (integer)