Here you can find the source of intToHex8(int value)
public static String intToHex8(int value)
//package com.java2s; // Use of this software is governed by the GPLv3 license public class Main { public static String intToHex8(int value) { return String.format("%08X", value); }//w ww . j a v a 2s .c om }