所以我试图创建一个登录屏幕,提示用户输入一个文本框和2个按钮(登录和取消)。当用户点击登录时,我希望JTextField
的值存储在变量中或至少可用。当我尝试使用playerNameTxt.getText()
方法执行任何操作时,我会收到错误,就好像playerNameTxt
不存在一样。
public class GUI extends JPanel implements ActionListener {
protected JTextField playerNameTxt;
public GUI() {
JTextField playerNameTxt = new JTextField(20);
JLabel playerNameLbl = new JLabel("Enter Player Name");
JButton loginBtn = new JButton("Login");
loginBtn.setVerticalTextPosition(AbstractButton.BOTTOM);
loginBtn.setHorizontalTextPosition(AbstractButton.LEFT);
loginBtn.setMnemonic(KeyEvent.VK_D);
loginBtn.setActionCommand("login");
loginBtn.addActionListener(this);
loginBtn.setToolTipText("Click this to Login");
JButton cancelBtn = new JButton("Cancel");
cancelBtn.setVerticalTextPosition(AbstractButton.BOTTOM);
cancelBtn.setHorizontalTextPosition(AbstractButton.RIGHT);
cancelBtn.setMnemonic(KeyEvent.VK_M);
cancelBtn.setActionCommand("cancel");
cancelBtn.addActionListener(this);
cancelBtn.setToolTipText("Click this to Cancel");
add(playerNameLbl);
add(playerNameTxt);
add(loginBtn);
add(cancelBtn);
}
public void actionPerformed(ActionEvent e) {
if ("login".equals(e.getActionCommand())) {
System.out.println(playerNameTxt);
} else {
System.exit(0);
}
}
private static void createAndShowGUI() {
JFrame frame = new JFrame("-- Munitions Login --");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocation(400, 200);
GUI newContentPane = new GUI();
newContentPane.setOpaque(true);
frame.setContentPane(newContentPane);
frame.pack();
frame.setVisible(true);
}
public static void main(String[] args) {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGUI();
}
});
}
}
答案 0 :(得分:5)
首先在构造函数之外声明该字段,然后再次在构造函数中声明它,以便在构造函数返回并且GUI被销毁后将其删除,并且在构造函数之后它将无法用于您的类已完成。你应该改变这一行:
JTextField playerNameTxt = new JTextField(20);
到此:
playerNameTxt = new JTextField(20);
答案 1 :(得分:0)
在构造函数中,您没有引用实例变量playerNameTxt
- 您正在创建一个新的局部变量。您应该将JTextField playerNameTxt = new JTextField(20);
更改为playerNameTxt = new JTextField(20);
(或this.playerNameTxt = new JTextField(20);
)以正确初始化变量。然后,您应该能够在没有警告或错误的情况下调用方法,假设其他一切都是正确的。