Converting from HSV (HSB in Java) to RGB without using java.awt.Color (disallowed on Google App Engine)
问题 I figured I should post this question, even if I have already found a solution, as a Java implementation was not readily available when I searched for it. Using HSV instead of RGB allows the generation of colors with the same saturation and brightness (something I wanted). Google App Engine does not allow use of java.awt.Color, so doing the following to convert between HSV and RGB is not an option: Color c = Color.getHSBColor(hue, saturation, value); String rgb = Integer.toHexString(c.getRGB(