怎样用Java写出一个带有图形用户界面的日历?

一、设计要求:

  • 设计一个窗体,该窗体为BorderLayout布局。
  • 窗体的中心添加一个Panel容器:Panel容器的布局是7行7列的GridLayout布局,Panel容器中放置49个标签,用来显示日历
  • 窗口的北面添加一个Panel容器,其布局是FlowLayout布局,Panel容器中放置两个按钮:nextMonth和previousMonth
  • 窗口的南面添加一个Panel容器,其布局是FlowLayout,Panel容器中放置一个标签用来显示一些信息

二、实现步骤:

  • 在构造方法中写出界面,并设置按钮监听
  • 在监听方法中分别覆写对三个按钮的响应
  • 定义获取时间信息的方法。该方法可以将给定格式的时间字符串转换成时间,并且获得该时间所对应的各项具体信息
  • 按照日历格式在屏幕上输出时间信息

三、程序源代码:

package priv.lxm.homework.report05;

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;

public class MyCalendar extends JFrame implements ActionListener {

    private JTextField text;
    JPanel head=new JPanel();//北部容器
    JPanel body=new JPanel();//中部容器
    JPanel foot=new JPanel();//南部容器
    Calendar calendar=Calendar.getInstance();
    int dayNow=calendar.get(Calendar.DATE);
    int monthNow=calendar.get(Calendar.MONTH)+1;
    int yearNow=calendar.get(Calendar.YEAR);
    int year = calendar.get(Calendar.YEAR);//获取当前查询年份,默认为当前年份
    int month = calendar.get(Calendar.MONTH) + 1;//获取当前查询月份,默认为当前月份

    private MyCalendar(){//构造方法
        //主要参数设置
        setTitle("日历");
        setSize(500,400);
        setLocationRelativeTo(null);//窗体居中
        setResizable(false);//关闭窗体大小可调
        setDefaultCloseOperation(EXIT_ON_CLOSE);

        //界面布局
        //北部容器
        head.setBackground(new Color(245,222,179));
        head.setLayout(new FlowLayout());
        JButton searchJButton=new JButton("查询");
        searchJButton.setFont(new Font("SimHei",Font.BOLD,15));
        searchJButton.setForeground(new Color(245,245,245));
        searchJButton.setBackground(new Color(255,140,0));
        searchJButton.setPreferredSize(new Dimension(50,35));
        searchJButton.setBorder(null);
        JButton upJButton=new JButton("上月");
        upJButton.setFont(new Font("SimHei",Font.BOLD,15));
        upJButton.setForeground(new Color(245,245,245));
        upJButton.setBackground(new Color(105,105,105));
        upJButton.setBorder(null);
        upJButton.setPreferredSize(new Dimension(50,35));
        JButton downJButton=new JButton("下月");
        downJButton.setFont(new Font("SimHei",Font.BOLD,15));
        downJButton.setForeground(new Color(245,245,245));
        downJButton.setBackground(new Color(105,105,105));
        downJButton.setBorder(null);
        downJButton.setPreferredSize(new Dimension(50,35));
        JLabel jLabelShow=new JLabel("请输入年份:");
        jLabelShow.setFont(new Font("SimHei",Font.BOLD,15));
        text=new JTextField(15);
        head.add(jLabelShow);
        head.add(text);
        head.add(searchJButton);
        head.add(upJButton);
        head.add(downJButton);
        searchJButton.addActionListener(this);
        upJButton.addActionListener(this);
        downJButton.addActionListener(this);

        //中部容器
        body.applyComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT);//每行添加组件的顺序
        body.setBackground(new Color(210,180,140));
        body.setLayout(new GridLayout(7,7,1,1));
        getDateInfo(String.valueOf(year)+"-"+String.valueOf(month));

        //南部容器
        foot.setSize(new Dimension(500,200));
        foot.setBackground(new Color(220,220,220));
        foot.setLayout(new FlowLayout(FlowLayout.CENTER));


        Container integralContainer=this.getContentPane();//创建全局容器
        integralContainer.add(head,BorderLayout.NORTH);
        integralContainer.add(body,BorderLayout.CENTER);
        integralContainer.add(foot,BorderLayout.SOUTH);


    }


    @Override
    public void actionPerformed(ActionEvent actionEvent) {//监听事件
        String label=actionEvent.getActionCommand();
        switch (label) {
            case "查询":
                System.out.println("进入查询");
                try {
                    year = Integer.parseInt(text.getText());
                    month=1;
                    getDateInfo(String.valueOf(year)+"-"+String.valueOf(month));
                }catch (NumberFormatException e){
                    System.out.println("非数字异常已被捕获,进程正常!");
                }
                break;
            case "上月":
                System.out.println("进入上月");
                if (month==1){
                    year--;
                    month=12;
                }else
                    month--;
                getDateInfo(String.valueOf(year)+"-"+String.valueOf(month));
                break;
            case "下月":
                System.out.println("进入下月");
                if (month==12){
                    year++;
                    month=1;
                }else
                    month++;
                getDateInfo(String.valueOf(year)+"-"+String.valueOf(month));
                break;
        }
    }

    private void getDateInfo(String date) {//获取日期信息
        try {
            SimpleDateFormat dFormat = new SimpleDateFormat("yyyy-MM");// 日期格式化类
            Date parse = dFormat.parse(date);// 把字符串类型的日期转换为date类型的
            Calendar calendar = new GregorianCalendar();// 创建一个公历类的实例
            calendar.setTime(parse);// 把格式化好的日期对象放进Calendar
            calendar.set(Calendar.DATE, 1);//重置日期为第一天
            // 获取这个月的第一天是周几
            int weekDay = calendar.get(Calendar.DAY_OF_WEEK);
            // 获取每个月最大的天数
            int maxDay = calendar.getActualMaximum(Calendar.DAY_OF_MONTH);
            body.removeAll();
            body.repaint();

            String[] title = {"日", "一", "二", "三", "四", "五", "六"};
            for (String label : title) {
                JLabel jLabel = new JLabel(label);
                jLabel.setHorizontalAlignment(JLabel.CENTER);
                jLabel.setForeground(new Color(255, 0, 0));
                jLabel.setBorder(BorderFactory.createLineBorder(Color.BLACK));
                jLabel.setFont(new Font("SimHei", Font.BOLD, 18));
                body.add(jLabel);
                body.revalidate();
            }
            for (int i = 1; i <= 42; i++) {
                if (i >= weekDay && i <= (maxDay + weekDay - 1)) {
                    JLabel jLabel = new JLabel(String.valueOf(i - weekDay + 1));
                    jLabel.setFont(new Font("SimHei", Font.BOLD, 15));
                    jLabel.setHorizontalAlignment(JLabel.CENTER);
                    if ((year==yearNow)&&(month==monthNow)&&(i - weekDay + 1==dayNow)){
                        System.out.println("00");
                        jLabel.setBorder(BorderFactory.createLineBorder(Color.WHITE));
                    }
                    body.add(jLabel);
                    body.revalidate();
                } else {
                    JLabel jLabel = new JLabel("");
                    jLabel.setHorizontalAlignment(JLabel.CENTER);
                    jLabel.setFont(new Font("SimHei", Font.BOLD, 15));
                    body.add(jLabel);
                    body.revalidate();
                }
            }
            if (year > 0 && year <= 9999) {
                foot.removeAll();
                foot.repaint();
                JLabel show = new JLabel(year + "年" + month + "月");
                show.setFont(new Font("SimHei", Font.BOLD, 20));
                foot.add(show);//将标签添加到南部容器
                foot.revalidate();
            }
        }catch (ParseException e){
            System.out.println("日期异常亦已被捕获,进程正常!");
        }
    }

    public static void main(String[] args){//主方法
        JFrame jFrame=new MyCalendar();
        jFrame.setVisible(true);
    }
}


四、程序测试:


怎样用Java写出一个带有图形用户界面的日历?_第1张图片
怎样用Java写出一个带有图形用户界面的日历?_第2张图片

<本文完……>

了解更多内容:

怎样用Java写出一个带有图形用户界面的计算器?
我的Java学习笔记与经验分享(一)

**<欢迎关注>**

你可能感兴趣的:(JAVA)