十進制轉成十六進制: Integer.toHexString(int i)
十進制轉成八進制 Integer.toOctalString(int i)
十進制轉成二進制 Integer.toBinaryString(int i)
十六進制轉成十進制 Integer.valueOf("FFFF",16).toString()
八進制轉成十進制 Integer.valueOf("876",8).toString()
二進制轉十進制 Integer.valueOf("0101",2).toString()