Java Integer to Hex int2HexString(int n)

Here you can find the source of int2HexString(int n)

Description

int Hex String

License

Open Source License

Declaration

public static String int2HexString(int n) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {

    public static String int2HexString(int n) {
        return Integer.toHexString(n).toUpperCase();
    }/*from  w w w.ja  v a 2 s  . c  o m*/
}

Related

  1. int2hex(int i)
  2. int2hex(int i)
  3. int2HexChar(int val)
  4. int2HexChars(final int data)
  5. int2HexString(final int i)
  6. int2hexString(int x)
  7. int2HexString(StringBuilder buf, int value)
  8. int2HexZeroPad(int i)
  9. integerToHex(final Object value, final int desimals)