我有一个带有JTextField
的简单Java Swing表单,我通过JTextField
方法获取getText()
的值,但我无法将其用于主程序。你能帮我解决什么问题以及如何解决?这是我的代码:
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
public class Login {
private String name;
public Login() {
JFrame main = new JFrame("LOGIN");
main.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
main.setResizable(false);
main.setLayout(null);
main.setPreferredSize(new Dimension(200, 300));
main.setLocation(400, 200);
// Heading: LOGIN
JLabel heading = new JLabel("LOGIN");
heading.setBounds(80, 20, 50, 20);
main.add(heading);
// Label Username
JLabel username_label = new JLabel("username: ");
username_label.setBounds(5, 70, 80, 20);
main.add(username_label);
// Textfield Username
final JTextField username_field = new JTextField();
username_field.setBounds(70, 70, 120, 20);
main.add(username_field);
this.name = username_field.getText();
// Button Login
JButton loginBtn = new JButton("LOGIN");
loginBtn.setBounds(40, 150, 120, 25);
main.add(loginBtn);
main.pack();
main.setVisible(true);
loginBtn.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
name = username_field.getText();
// System.out.println(name); //IT WORKS
}
});
}
public static void main(String[] args) {
Login me = new Login();
me.print();//I EXPECT IT WILL PRINT @name BUT NO, WHY?
}
public void print() {
System.out.println(name);
}
}
非常感谢!
答案 0 :(得分:10)
您不应在用户点击按钮
之前打印该值public static void main(String[] args) {
HelloWorldSwing me = new HelloWorldSwing();
//me.print();//DON't PRINT HERE
}
相反,您可以在actionPerformed()方法中执行此操作,
loginBtn.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
name = username_field.getText();
HelloWorldSwing.this.print();
}
});
这将打印您在文本字段中输入的值
答案 1 :(得分:6)
您正在尝试在显示GUI后立即打印名称值:
Login me = new Login();
me.print(); // This executes immediately after the statement above
但是,在用户按下登录按钮之前,不会设置此值:
loginBtn.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
name = username_field.getText();
// System.out.println(name); //IT WORKS
}
});
答案 2 :(得分:5)
向GUI类添加文本字段并不会奇怪地向该类添加getText()
方法。我的意思是考虑一下,如果有两个文本字段,哪一个应该用于getText()
?该字段应声明为该类的属性,并定义一个将getText()
该字段的方法。
顺便说一句:
JTextField
时,请不要使用JPasswordField
。JFrame
这应该是一个模态JDialog
。有关详细信息,请参阅How to Use Modality in Dialogs。