Java int to String - Integer.toString(i) vs new Integer(i).toString() - Stack Overflow
new Integer(i).toString(); This statement creates the object of the Integer and then call its methods toString(i) to return the String representation of Integer's value. Integer.toString(i); It returns the String object representing the specific int (inte...