Introduction
Here is the source code for Main.java
Source
//package com.java2s;
//License from project: Apache License
public class Main {
private static final String TO_RGB = "#%06X";
public static String toRGBColor(int colorInt) {
return String.format(TO_RGB, 0xFFFFFF & colorInt);
}
}