作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一些作业要做一个简单的登录窗口。完成编码后,我尝试将文件导出到可运行的 jar 文件中,运行 jar 文件后,我发现它弄乱了 GUI。由于某种原因,JPasswordField 填满了我的整个 JFrame。我不知道可能是什么问题,因为它在 IDE 中运行良好。有帮助吗?
这是代码(在 eclipse IDE 中运行良好):`
public class Login extends JFrame {
private static final long serialVersionUID = 1L;
private static JTextField user = new JTextField();
private static JPasswordField pass = new JPasswordField();
private static JButton Loginbtn = new JButton("Login");
protected String[] args;
private static JFrame frame = new JFrame("Log In");
public Login(){
Loginbtn.addActionListener(new ActionListener(){
@SuppressWarnings("deprecation")
public void actionPerformed(ActionEvent e){
if(user.getText().equals("Admin") && pass.getText().equals("Nimda")){
//System.out.println("Hello ADMIN!");
JOptionPane.showMessageDialog(null, "Logged In!");
MyLog.main(args);
frame.setVisible(false);
}
else{
//System.out.println("Login error!");
JOptionPane.showMessageDialog(null, "Login Error!");
}
}
});
}
public static void main(String[] args) {
@SuppressWarnings("unused")
Login login = new Login();
JLabel username = new JLabel("Username");
JLabel password = new JLabel("Password");
frame.setSize(260, 200);
frame.setResizable(false);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
username.setBounds(20, 60, 100, 20);
password.setBounds(20, 85, 100, 20);
pass.setBounds(85, 85, 150, 20);
user.setBounds(85, 60, 150, 20);
Loginbtn.setBounds(88, 110, 50, 20);
frame.add(username);
frame.add(password);
frame.add(Loginbtn);
frame.add(user);
frame.add(pass);
}
}
先谢谢大家了!干杯!
最佳答案
在将组件添加到 JFrame 之前调用 setVisible 很可能会导致问题。在调用 setVisible 之前,您应该将所有需要的组件添加到 JFrame,因为 setVisible 会验证这些组件(布置它们)。
What setVisible does from the API, you'll see it talks about validating the components
关于java - JAR 文件弄乱了 GUI?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23962862/
我是一名优秀的程序员,十分优秀!