Java Long.toOctalString(long i)
Syntax
Long.toOctalString(long i) has the following syntax.
public static String toOctalString(long i)
Example
In the following code shows how to use Long.toOctalString(long i) method.
public class Main {
public static void main(String[] args) {
System.out.println(Long.toOctalString(10));
}/*from w w w .jav a2 s.co m*/
}
The output: