java:将Hex颜色#RRGGBB转换为rgb r g b?

时间:2015-07-05 04:04:11

标签: java colors

我的十六进制颜色字符串:n[0]

我想要简单的方法将字符串1转换为p2 m[1] 7

#ffffff

这种方法是真的吗?

感谢。

修改:______________________________

#rrggbb

1 个答案:

答案 0 :(得分:2)

您可以尝试:

    int  r=  Integer.valueOf( colorStr.substring( 1, 3 ), 16 );
    int  g=  Integer.valueOf( colorStr.substring( 3, 5 ), 16 );
    int  b=  Integer.valueOf( colorStr.substring( 5, 7 ), 16 );