Here you can find the source of IntToHex(int i, int length)
public static String IntToHex(int i, int length)
//package com.java2s; public class Main { public static String IntToHex(int i, int length) { String temp = Integer.toHexString(i); while (temp.length() < length * 2) { temp = "0" + temp; }// w w w .jav a2 s.c o m return temp; } }