Here you can find the source of int2HexString(int n)
public static String int2HexString(int n)
//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*/ }