解释以下每行代码confirm.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { int inputyear = Integer.parseInt(inputYear.getText()); if(inputyear<=1900){ JOptionPane.showMessageDialog(null,"请输入正确的年份(1900-2300"); inputYear.setText(null); return; } int inputmonth = Integer.parseInt(inputMonth.getText()); if (inputmonth<=0||inputmonth>=13){ JOptionPane.showMessageDialog(null,"请输入正确的月份(1-12)"); inputMonth.setText(null); return; } for (int i=0;i<42;i++){ dayBtn[i].setEnabled(true); dayBtn[i].setForeground(Color.black); dayBtn[i].setBackground(new Color(240, 239, 239)); } setDay(inputyear,inputmonth); dayText.setText(inputYear.getText()+"/"+inputMonth.getText()+"/"+nowDate.get(Calendar.DAY_OF_MONTH)+" "); } });
时间: 2024-02-15 10:28:39 浏览: 62
这段代码是对一个按钮组件"confirm"添加一个监听器,当用户点击该按钮时,会执行监听器内部重写的actionPerformed方法。在该方法内部,首先通过获取用户输入的年份和月份,判断其是否在合法范围内(年份在1900-2300之间,月份在1-12之间)。如果输入的年份或月份不合法,会通过弹出对话框提示用户重新输入,并清空输入框。
如果输入的年份和月份合法,会遍历一个按钮数组,将所有按钮的状态还原。然后调用setDay方法,传入年份和月份,用于设置日历的日期。最后,将日历日期显示在一个文本框中。
相关问题
import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; import java.util.Calendar; import java.util.GregorianCalendar; class MyCalendar extends JFrame implements ActionListener { private JPanel p1, p2, p3; //三个面板 p1最上面 p2中间 p3下面 private JLabel yearStr, monthStr; //标签 private JTextField inputYear, inputMonth; private JButton confirm; //确认 private JButton lastMonth; private JButton nextMonth; private JLabel dayText;//文本框 private JLabel TimeText;//文本框 //p2面板里控件的声明 private String[] week = {"日", "一", "二", "三", "四", "五", "六"}; private JLabel[] weekLable = new JLabel[week.length];//数组的声明 //p3面板的42个按钮声明 private JButton[] dayBtn = new JButton[42]; private Calendar nowDate = new GregorianCalendar(); //Calendar是抽象类 new不出 用直接子类 private int nowYear = nowDate.get(Calendar.YEAR); private int nowMonth = nowDate.get(Calendar.MONTH); public MyCalendar() throws HeadlessException { p1 = new JPanel(); p2 = new JPanel(); p3 = new JPanel(); yearStr = new JLabel("Year:"); inputYear = new JTextField(4); monthStr = new JLabel(" Month:"); inputMonth = new JTextField(3); confirm = new JButton("确认"); lastMonth = new JButton("上月"); nextMonth = new JButton("下月"); dayText = new JLabel(); TimeText = new JLabel(); new Thread() { //线程内部类用来实时显示时间 public void run() { while (true) { LocalDateTime dateTime = LocalDateTime.now(); DateTimeFormatter formatter = DateTimeFormatter.ofPattern("HH:mm:ss"); //大写的HH是24小时制的 String nowTime = dateTime.format(formatter); TimeText.setText(nowTime); try { Thread.sleep(1000); } catch (Inter
ruptedException e) { e.printStackTrace(); } } } }.start(); //启动线程 //设置布局管理器 this.setLayout(new BorderLayout()); p1.setLayout(new FlowLayout(FlowLayout.CENTER)); p2.setLayout(new GridLayout(1, 7)); p3.setLayout(new GridLayout(6, 7)); //给p1面板添加控件 p1.add(yearStr); p1.add(inputYear); p1.add(monthStr); p1.add(inputMonth); p1.add(confirm); p1.add(lastMonth); p1.add(nextMonth); p1.add(TimeText); //给p2面板添加控件 for (int i = 0; i < week.length; i++) { weekLable[i] = new JLabel(week[i], SwingConstants.CENTER); p2.add(weekLable[i]); } //给p3面板添加控件 for (int i = 0; i < dayBtn.length; i++) { dayBtn[i] = new JButton(""); dayBtn[i].setContentAreaFilled(false);//将按钮设为透明 p3.add(dayBtn[i]); } confirm.addActionListener(this); lastMonth.addActionListener(this); nextMonth.addActionListener(this); //设置窗口基本属性 this.add(p1, BorderLayout.NORTH); this.add(p2, BorderLayout.CENTER); this.add(p3, BorderLayout.SOUTH); this.setLocation(100, 100); this.setSize(400, 300); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setVisible(true); //初始化 init(); } private void init() { nowDate.set(Calendar.DAY_OF_MONTH, 1); showCalendar(); } @Override public void actionPerformed(ActionEvent e) { if (e.getSource() == confirm) { int year = Integer.parseInt(inputYear.getText().trim()); int month = Integer.parseInt(inputMonth.getText().trim()); nowDate.set(Calendar.YEAR, year); nowDate.set(Calendar.MONTH, month - 1); init(); } else if (e.getSource() == lastMonth) { nowDate.add(Calendar.MONTH, -1); init(); } else if (e.getSource() == nextMonth) { nowDate.add(Calendar.MONTH, 1); init(); } else { for (int i = 0; i < dayBtn.length; i++) { if (e.getSource() == dayBtn[i]) { String dayStr = dayBtn[i].getText().trim(); if (!dayStr.equals("")) { JOptionPane.showMessageDialog(null, "您选择的日期是:" + nowYear + "年" + (nowMonth + 1) + "月" + dayStr + "日"); } break; } } } } private void showCalendar() { nowYear = nowDate.get(Calendar.YEAR); nowMonth = nowDate.get(Calendar.MONTH); inputYear.setText(String.valueOf(nowYear)); inputMonth.setText(String.valueOf(nowMonth + 1)); int maxDay = nowDate.getActualMaximum(Calendar.DAY_OF_MONTH);//获取当月最大天数 int weekNo = nowDate.get(Calendar.DAY_OF_WEEK) - 1;//获取当月第一天是星期几 for (int i = 0; i < dayBtn.length; i++) { dayBtn[i].setText(""); } for (int i = weekNo, n = 1; n <= maxDay; i++, n++) { dayBtn[i].setText(String.valueOf(n)); } dayText.setText(nowYear + "年" + (nowMonth + 1) + "月"); } } public class Main { public static void main(String[] args) { new MyCalendar(); } }
这是一个Java GUI程序,是一个日历软件,实现了对日历的显示和时间的实时更新。用户可以选择日期,程序会弹出对话框,显示用户选择的日期。程序的界面比较简单,分为三个面板,p1面板上放置了输入年月和确认按钮,p2面板上放置了星期几,p3面板上放置了日期。程序主要是通过Calendar类和JButton、JLabel等Swing组件实现的。
使用java请完成一个类似注册的界面的设计与实现,包括事件处理。能够实现输入用户名和密码进行简单的校验,能够提示用户名密码是否正确,点击取消按钮能够清空用户输入的内容,上传代码和运行结果截图。
好的,我可以为您提供一个基于Java Swing实现的注册界面的设计和代码,如下所示:
```java
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class RegisterForm extends JFrame {
private JTextField username_field;
private JPasswordField password_field;
public RegisterForm() {
// 设置窗口标题
super("注册");
// 创建用户名和密码标签
JLabel username_label = new JLabel("用户名:");
JLabel password_label = new JLabel("密码:");
// 创建用户名和密码输入框
username_field = new JTextField(20);
password_field = new JPasswordField(20);
// 创建确认按钮和取消按钮
JButton confirm_button = new JButton("确认");
JButton cancel_button = new JButton("取消");
// 添加确认按钮的事件处理函数
confirm_button.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// 获取用户输入的用户名和密码
String username = username_field.getText();
String password = new String(password_field.getPassword());
// 进行简单的校验
if (username.equals("admin") && password.equals("123456")) {
JOptionPane.showMessageDialog(null, "用户名和密码正确!");
} else {
JOptionPane.showMessageDialog(null, "用户名或密码错误!");
}
}
});
// 添加取消按钮的事件处理函数
cancel_button.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// 清空用户输入的内容
username_field.setText("");
password_field.setText("");
}
});
// 创建表格布局,并添加组件
JPanel panel = new JPanel(new GridLayout(3, 2));
panel.add(username_label);
panel.add(username_field);
panel.add(password_label);
panel.add(password_field);
panel.add(confirm_button);
panel.add(cancel_button);
// 添加面板到窗口
add(panel);
// 设置窗口大小和位置
setSize(300, 150);
setLocationRelativeTo(null);
setVisible(true);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args) {
RegisterForm registerForm = new RegisterForm();
}
}
```
这是一个基于Java Swing实现的注册界面,包括一个用户名输入框、一个密码输入框、一个确认按钮和一个取消按钮。当用户点击确认按钮时,程序会获取用户输入的用户名和密码,并进行简单的校验。如果用户名和密码正确,程序会弹出一个提示框提示用户登录成功;否则,程序会弹出一个错误框提示用户用户名或密码错误。当用户点击取消按钮时,程序会清空用户输入的内容。
注意,本代码仅作为示例,实际情况下需要根据具体需求进行修改和完善。同时,本代码中的图片上传功能没有涉及,需要根据具体需求添加相应的代码。
阅读全文