Here you can find the source of toHexDigits(int value)
public static String toHexDigits(int value)
//package com.java2s; public class Main { public static String toHexDigits(int value) { return String.format("%02x", value); }// w ww. j a v a 2s. c o m }