java gui写一个登入界面
时间: 2023-08-12 22:05:11 浏览: 132
好的,我可以为您提供一个简单的Java GUI登陆界面的代码示例:
```java
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class LoginGUI extends JFrame implements ActionListener {
private JTextField usernameField;
private JPasswordField passwordField;
private JButton loginButton, cancelButton;
public LoginGUI() {
setTitle("Login");
setSize(300, 150);
setLocationRelativeTo(null);
setDefaultCloseOperation(EXIT_ON_CLOSE);
// 创建面板
JPanel panel = new JPanel(new GridLayout(3, 2));
// 添加用户名标签和文本框
JLabel usernameLabel = new JLabel("Username:");
panel.add(usernameLabel);
usernameField = new JTextField(20);
panel.add(usernameField);
// 添加密码标签和文本框
JLabel passwordLabel = new JLabel("Password:");
panel.add(passwordLabel);
passwordField = new JPasswordField(20);
panel.add(passwordField);
// 添加登录和取消按钮
loginButton = new JButton("Login");
loginButton.addActionListener(this);
cancelButton = new JButton("Cancel");
cancelButton.addActionListener(this);
panel.add(loginButton);
panel.add(cancelButton);
// 添加面板到窗口
add(panel);
setVisible(true);
}
public void actionPerformed(ActionEvent e) {
// 判断按钮
if (e.getSource() == loginButton) {
String username = usernameField.getText();
String password = String.valueOf(passwordField.getPassword());
// 在这里添加验证用户名和密码的代码
// 如果用户名和密码正确,则关闭窗口并打开应用程序的主界面
JOptionPane.showMessageDialog(null, "Logged in successfully!");
dispose();
} else if (e.getSource() == cancelButton) {
System.exit(0);
}
}
public static void main(String[] args) {
new LoginGUI();
}
}
```
这个GUI界面包含一个用户名文本框、一个密码文本框和两个按钮:登录和取消。当用户单击登录按钮时,程序将获取用户名和密码,并进行验证。如果验证成功,则关闭登录窗口并打开应用程序的主界面。如果用户单击取消按钮,则程序将退出。
阅读全文