List of utility methods to do Int to String Convert
String str1 = Integer.toString(i); if (i < 10 && i >= 0) { str1 = "0" + str1; return str1;