Here you can find the source of toHtmlHex(Color color)
public static String toHtmlHex(Color color)
//package com.java2s; //License from project: Apache License import java.awt.Color; public class Main { public static String toHtmlHex(Color color) { return String.format("#%02x%02x%02x", color.getRed(), color.getGreen(), color.getBlue()); }// w w w .j a v a 2s. co m }