Convert long value to string

String toString()
Returns a String object representing this Long's value.
static String toString(long i)
Returns a String object representing the specified long.
static String toString(long i, int radix)
Returns a string representation of the argument i in the radix.

public class Main {
  public static void main(String[] args) {
    System.out.println(Long.toString(10));
    System.out.println(Long.toString(10,8));
  }
}

The output:


10
12
Home 
  Java Book 
    Essential Classes  

Long:
  1. Long class
  2. Constants value from Long class
  3. Constructors from Long
  4. Convert long value to byte, double, float, int, long, short
  5. Decode a string to create long value
  6. Get the long value from a system property
  7. Compare two long values
  8. Parse long value from string
  9. Convert long value to binary, hex and octal format strings
  10. Convert long value to string
  11. Get the sign of the long value
  12. Get the number of zero bits preceding and following
  13. Reverse and rotate a long value