How to convert hex to rgb using Java?

后端 未结 19 2055
-上瘾入骨i
-上瘾入骨i 2020-11-27 13:46

How can I convert hex color to RGB code in Java? Mostly in Google, samples are on how to convert from RGB to hex.

19条回答
  •  死守一世寂寞
    2020-11-27 13:55

    The easiest way:

    // 0000FF
    public static Color hex2Rgb(String colorStr) {
        return new Color(Integer.valueOf(colorStr, 16));
    }
    

提交回复
热议问题