Here you can find the source of toHex(Color color)
public static String toHex(Color color)
//package com.java2s; //License from project: Open Source License import java.awt.*; public class Main { public static String toHex(Color color) { return "#" + String.format("%02X", color.getRed()).toLowerCase() + String.format("%02X", color.getGreen()).toLowerCase() + String.format("%02X", color.getBlue()).toLowerCase(); }//from w w w . j a v a 2 s . c o m }