java1 尝试完成以下窗口 在这里插入图片描述 点击确定后如果用户名为"zhangsan",密码为“123”则弹出信息:“欢迎使用”,否则弹出信息“用户名和密码错误,请重新输入”,点击取消则关闭窗口,退出程序。 背景图片: 在这里插入图片描述
时间: 2024-03-02 21:52:50 浏览: 61
好的,我可以帮您解决这个问题。以下是 Java Swing 实现该窗口的代码:
```java
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class LoginWindow implements ActionListener {
private JFrame frame;
private JLabel userLabel, passLabel;
private JTextField userField;
private JPasswordField passField;
private JButton loginButton, cancelButton;
public LoginWindow() {
frame = new JFrame("登录");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);
frame.getContentPane().setBackground(Color.WHITE);
frame.setResizable(false);
frame.setSize(400, 300);
frame.setLocationRelativeTo(null);
ImageIcon imageIcon = new ImageIcon("bg.jpg");
JLabel bgLabel = new JLabel(imageIcon);
bgLabel.setBounds(0, 0, 400, 300);
frame.getContentPane().add(bgLabel);
userLabel = new JLabel("用户名:");
userLabel.setForeground(Color.BLACK);
userLabel.setBounds(80, 70, 80, 30);
bgLabel.add(userLabel);
passLabel = new JLabel("密码:");
passLabel.setForeground(Color.BLACK);
passLabel.setBounds(80, 120, 80, 30);
bgLabel.add(passLabel);
userField = new JTextField();
userField.setBounds(160, 70, 120, 30);
bgLabel.add(userField);
passField = new JPasswordField();
passField.setBounds(160, 120, 120, 30);
bgLabel.add(passField);
loginButton = new JButton("确定");
loginButton.setBounds(80, 180, 100, 30);
loginButton.addActionListener(this);
bgLabel.add(loginButton);
cancelButton = new JButton("取消");
cancelButton.setBounds(180, 180, 100, 30);
cancelButton.addActionListener(this);
bgLabel.add(cancelButton);
frame.setVisible(true);
}
@Override
public void actionPerformed(ActionEvent e) {
if (e.getSource() == loginButton) {
String username = userField.getText();
String password = String.valueOf(passField.getPassword());
if (username.equals("zhangsan") && password.equals("123")) {
JOptionPane.showMessageDialog(frame, "欢迎使用");
} else {
JOptionPane.showMessageDialog(frame, "用户名和密码错误,请重新输入");
}
} else if (e.getSource() == cancelButton) {
frame.dispose();
}
}
public static void main(String[] args) {
new LoginWindow();
}
}
```
请确保您已经将背景图片保存为 `bg.jpg` 并与代码文件放在同一目录下。运行该程序将会显示出一个登录窗口,您可以输入用户名和密码,点击确定或取消按钮来执行相应的操作。
阅读全文