Method toString(long i, int radix)
Return type:
java.lang.String
Member of:
java.lang.Long
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
Long.toString(System.currentTimeMillis(),36)+
2
Long.toString(System.currentTimeMillis(),36);
3
String stamp = Long.toString(lstamp, 32);
4
String document = Long.toString(document_id, 16);
5
buf.append(Long.toString((int) i & 0xff, 16).toUpperCase());
6
buf.append(Long.toString(oo.uid_time,16));
7
new Exception("wrong value: " + Long.toString(ti.docFreq, 16)
8
String password = Long.toString(value, Character.MAX_RADIX);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.