Method toString(int i, int radix)
Return type: java.lang.String
Member of: java.lang.Integer
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 out.print(Integer.toString(value, 10));
2 String hex = Integer.toString(num, 16);
3 String lenStr = Integer.toString( len, 16 );
4 return Integer.toString(i, 36);
5 String soid = Integer.toString(getOid(), 32);
6 throw new RuntimeException("Internal Error: shorthands: \\u"+Integer.toString(ch, 16));
7 Integer.toString(high, 16));
8 buf.append(Integer.toString(oo.uid_unique,16));
9 String str = "Unknown block type (0x" + Integer.toString (block, 16) + ")";
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.