我有一个包含多个JLabel的面板,我想更改所有的Icon,
String path = System.getProperty("user.dir");
for (int x=0;x< 21;x++) {
javax.swing.JLabel lab = boardPanel.getComponent(x).;
lab.setIcon(new ImageIcon(path + "\\image\\blank.jpg"));
}
它给我一个不兼容类型的错误,所有boardPanel内部都是JLabel, 我正在使用netbeans 6.8。
答案 0 :(得分:4)
getComponent()
将返回一个Component。您需要转换为JLabel
。
javax.swing.JLabel lab = (javax.swing.JLabel)boardPanel.getComponent(x);
为安全起见,您应在铸造前检查预期类型。毕竟,在某个阶段,除了JLabel
s之外,您可能还有类型。
Component c = boardPanel.getComponent(x);
if (c instanceof JLabel) {
JLabel lab = (JLabel)c;
// etc.
}