public static String toOctalString (int i)

Returns a string representation of the integer argument as an unsigned integer in base 8.

The unsigned integer value is the argument plus 232 if the argument is negative; otherwise, it is equal to the argument. This value is converted to a string of ASCII digits in octal (base 8) with no extra leading 0s.

The value of the argument can be recovered from the returned string s by calling Integer.parseUnsignedInt(String, int).

If the unsigned magnitude is zero, it is represented by a single zero character '0' ( '\u0030'); otherwise, the first character of the representation of the unsigned magnitude will not be the zero character. The following characters are used as octal digits:

01234567
These are the characters '\u0030' through '\u0037'.

Parameters:
i    an integer to be converted to a string.

Returns:  the string representation of the unsigned integer value represented by the argument in octal (base 8).

See also:
parseUnsignedInt(String, int), toUnsignedString(int, int)

Since:  1.0.2