我怎样才能获得JLabel的边框颜色

时间:2013-04-14 13:02:25

标签: java swing jlabel

jLabel.setBorder(BorderFactory.createLineBorder(Color.BLUE));

如何在此之后检查边框颜色?

1 个答案:

答案 0 :(得分:7)

检查api,我会说

((LineBorder)jLabel.getBorder()).getLineColor();