Long.toString(long i, int radix) has the following syntax.
public static String toString(long i, int radix)
In the following code shows how to use Long.toString(long i, int radix) method.
public class Main { public static void main(String[] args) { System.out.println(Long.toString(10,8)); //from w w w .j ava 2 s. c o m // returns a string representation of the specified long with radix 10 String retval = Long.toString(1234567890, 10); System.out.println("Value = " + retval); // returns a string representation of the specified long with radix 16 retval = Long.toString(1234567890, 16); System.out.println("Value = " + retval); // returns a string representation of the specified long with radix 8 retval = Long.toString(1234567890, 8); System.out.println("Value = " + retval); } }
The code above generates the following result.