Here you can find the source of toHex(int color)
private static String toHex(int color)
//package com.java2s; //License from project: Open Source License public class Main { private static String toHex(int color) { String rv = Integer.toHexString(color); if (color <= 0x0F) return "0" + rv; else//from w w w . jav a 2s. c o m return rv; } }