Method toHexString(long i)
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
private static final int maxCharLong = (Long.toHexString(Long.MAX_VALUE))
2
printHexString(Long.toHexString(l).toUpperCase(), byteNumber * 2);
3
printHexString(Long.toHexString(l).toUpperCase(), 16);
4
+ idCounter + " (" + Long.toHexString(idCounter) + ")" );
5
batchID = Long.toHexString(System.currentTimeMillis()).toUpperCase();
6
String chunksize = Long.toHexString (len);
7
+ Long.toHexString(givenChecksum)
8
alias = Long.toHexString(rndSeed.nextLong()).toUpperCase();
9
byte[] lkey = Long.toHexString((compress)? entries[i].length : files[i].length()).getBytes();
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.