是否有原因getText导致error: cannot find symbol代码中显示的动作侦听器内部?另外,如果有,我该如何解决此错误?
getText
error: cannot find symbol
class openNewPaneActionListener implements ActionListener { @Override public void actionPerformed(ActionEvent e) { String butSrcTxt = e.getSource().getText(); } }
您可以使用一个不错的简单技巧…
@Override public void actionPerformed(ActionEvent e) { String butSrcTxt = e.getActionCommand(); }
如果未actionCommand为按钮指定,则text使用按钮的。
actionCommand
text
现在,如果您确实指定了actionCommand按钮的属性,并且您仍然想知道文本(对我来说似乎很奇怪),则可以使用更多类似…
@Override public void actionPerformed(ActionEvent e) { Object source = e.getSource(); if (source instanceof JButton) { JButton btn = (JButton)source; String butSrcTxt = btn.getText(); } }