Java Hex Calculate toHexString(long l)

Here you can find the source of toHexString(long l)

Description

to Hex String

License

Apache License

Declaration

public static String toHexString(long l) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static String toHexString(long l) {
        return String.format("%x", l);
    }/*from w w w . j ava 2  s .  c om*/
}

Related

  1. toHexString(int[] data)
  2. toHexString(int[] ia)
  3. toHexString(int[] x, int bitsPerDigit)
  4. toHexString(Integer num)
  5. toHexString(long i)
  6. toHexString(long l)
  7. toHexString(long l)
  8. toHexString(long l)
  9. toHexString(long value, int digits)