How does java.awt.Color.getColor(String colorName) work?

前端 未结 1 1480
太阳男子
太阳男子 2020-12-06 17:50

I\'m trying to get colors by name, and I came across Converting a String to Color in Java, which suggests using java.awt.getColor.

I can\'t work out wha

相关标签:
1条回答
  • 2020-12-06 18:42

    The non-accepted answer uses Color.getColor. This method reads from system properties which may or may not be present. You should not use this method.

    Instead, you should use the upvoted reflection method to find the static member of the Color class. Either this, or you should import your own color database which maps string names to RGB values.

    Color color;
    try {
        Field field = Color.class.getField("yellow");
        color = (Color)field.get(null);
    } catch (Exception e) {
        color = null; // Not defined
    }
    
    0 讨论(0)
提交回复
热议问题