java.lang.Integer.toString(int i)


java.lang.Integer.toString(int i)

package com.codingdict;



import java.lang.*;



public class IntegerDemo {



   public static void main(String[] args) {



      Integer i = new Integer(10);



      // returns a string representation of the specified integer in base 10

      String retval = i.toString(30);

      System.out.println("Value = " + retval);

   }

}