使用 JColorChooser 获取 Html 颜色代码
有没有办法从 JColorChooser 获取 html 颜色代码
我的 java Applet 从用户那里获取三种颜色并对它们进行平均并显示颜色
我想在他们查看平均颜色后获取 html 颜色代码
我该怎么做
Is there a way to get the html color code from a JColorChooser
My java Applet takes three colors from the user and averages them and displays the color
I want to get the html color code after they look at the average color
how can I do that
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编写一个方法将
Color
转换为String
。HTML颜色代码只是将R、G和B值转换为十六进制和显示为前面带有井号的字符串。这是一种相当简单的编写方法。
Write a method to convert a
Color
to aString
.An HTML color code is just the R, G, and B values converted to hex and displayed as a string with a pound sign in front. This is a fairly simple method to write.
一个稍短的版本,依赖于 Color.getRGB() :
有关 Web 颜色的更多信息,请参阅十六进制三元组 。
A slightly shorter version that relies on Color.getRGB() :
See Hex triplet for more information about Web colors.