java万年历设计源码附截图.docx

上传人:b****5 文档编号:27752822 上传时间:2023-07-04 格式:DOCX 页数:29 大小:50.49KB
下载 相关 举报
java万年历设计源码附截图.docx_第1页
第1页 / 共29页
java万年历设计源码附截图.docx_第2页
第2页 / 共29页
java万年历设计源码附截图.docx_第3页
第3页 / 共29页
java万年历设计源码附截图.docx_第4页
第4页 / 共29页
java万年历设计源码附截图.docx_第5页
第5页 / 共29页
点击查看更多>>
下载资源
资源描述

java万年历设计源码附截图.docx

《java万年历设计源码附截图.docx》由会员分享,可在线阅读,更多相关《java万年历设计源码附截图.docx(29页珍藏版)》请在冰豆网上搜索。

java万年历设计源码附截图.docx

java万年历设计源码附截图

importjava.awt.*;

importjava.awt.event.*;

importjavax.swing.*;

importjavax.swing.table.DefaultTableModel;

importjava.io.*;

importjava.text.DateFormat;

importjava.text.SimpleDateFormat;

importjava.util.Calendar;

importjava.util.Date;

importjava.util.GregorianCalendar;

importjava.util.Locale;

importjava.util.TimeZone;

publicclassh_main1extendsJFrameimplementsActionListener,MouseListener{

privateCalendarcld=Calendar.getInstance();//获取一个Calendar类的实例对象

privateString[]astr={"星期一","星期二","星期三","星期四","星期五","星期六","星期日"};

privateDefaultTableModeldtm=newDefaultTableModel(null,astr);

privateJTabletable=newJTable(dtm);

privateJScrollPanesp=newJScrollPane(table);

privateJButtonbLastYear=newJButton("上一年");

privateJButtonbNextYear=newJButton("下一年");

privateJButtonbLastMonth=newJButton("上月");

privateJButtonbNextMonth=newJButton("下月");

privateJButtonbAddClock=newJButton("确定");

privateJPanelp1=newJPanel();//装入控制日期的按钮模块

privateJPanelp2=newJPanel(newGridLayout(3,2));

privateJPanelp3=newJPanel(newBorderLayout());

privateJPanelp4=newJPanel(newGridLayout(2,1));

privateJPanelp5=newJPanel(newBorderLayout());

privateJPanelp6=newJPanel(newGridLayout(2,2));

privateJPanelp7=newJPanel(newGridLayout(2,1));

privateJPanelp8=newJPanel(newBorderLayout());

privateJComboBoxtimeBox=newJComboBox(TimeZone.getAvailableIDs());//对所有支持时区进行迭代,获取所有的id;

privateJTextFieldjtfYear=newJTextField(5);//jtfYeaar年份显示输入框

privateJTextFieldjtfMonth=newJTextField

(2);//jtfMouth月份显示输入框

privateJTextFieldtimeField=newJTextField();

privateJTextFieldh1=newJTextField(5);

privateJTextFieldm1=newJTextField(5);

privatestaticJTextAreajta=newJTextArea(10,5);

privateJScrollPanejsp=newJScrollPane(jta);

privateJTextAreajta1=newJTextArea(5,4);

privateJScrollPanejsp1=newJScrollPane(jta1);

privateJLabell=newJLabel("你可以向年份输入框中输入年份,提高查询效率");

privateJLabellt=newJLabel();

privateJLabelld=newJLabel();

privateJLabelts=newJLabel("请在右边下拉菜单选择你要选择的城市");

privateJLabelclock=newJLabel("闹钟");

privateJLabelnotice=newJLabel("备忘录");

privateJLabelhour=newJLabel("小时");

privateJLabelminute=newJLabel("分钟");

privateJLabellu=newJLabel("农历和节气");

privateJLabelnull1=newJLabel();

privateintlastTime;

privateStringlocalTime=null;

privateStrings=null;

privateSimpleDateFormatdateFormat=newSimpleDateFormat("yyyy年MM月dd日hh时mm分ss秒");

publich_main1(){

super("MyCalender");//框架命名

this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//窗口关闭函数

this.getContentPane().setLayout(newBorderLayout(5,5));

jta.setLineWrap(true);//长度大于分配长度时候则换行

table.setGridColor(Color.GRAY);//星期之间的网格线是灰色的

table.setColumnSelectionAllowed(true);//将table中的列设置为可选择的

table.setSelectionBackground(Color.GRAY);//当选定某一天时背景颜色为黑色

table.setSelectionForeground(Color.GREEN);

table.setBackground(newColor(184,207,229));//日期显示表格为浅蓝色

table.setFont(newFont("黑体",Font.BOLD,24));//日期数字字体格式

table.setRowHeight(30);//表格的高度

table.addMouseListener(this);//鼠标监听器

jtfYear.addActionListener(this);//可输入年份的文本框

//为各个按钮添加监听函数

bLastYear.addActionListener(this);

bNextYear.addActionListener(this);

bLastMonth.addActionListener(this);

bNextMonth.addActionListener(this);

bAddClock.addActionListener(this);

timeBox.addItemListener(newTimeSelectedChangedListener());

//将按钮添加到Jpane上

p1.add(bLastYear);

p1.add(jtfYear);//年份输入文本框

p1.add(bNextYear);

p1.add(bLastMonth);

p1.add(jtfMonth);

p1.add(bNextMonth);

p2.add(clock);

p2.add(bAddClock);

p2.add(hour);

p2.add(h1);

p2.add(minute);

p2.add(m1);

p3.add(jsp,BorderLayout.SOUTH);

p3.add(lu,BorderLayout.CENTER);

p3.add(ld,BorderLayout.NORTH);

p4.add(l);

p4.add(lt);

p5.add(p4,BorderLayout.SOUTH);

p5.add(sp,BorderLayout.CENTER);

p5.add(p1,BorderLayout.NORTH);

p6.add(ts);

p6.add(timeBox);

p6.add(null1);

p6.add(timeField);

p7.add(notice);

p7.add(jsp1);

p8.add(p2,BorderLayout.CENTER);

p8.add(p7,BorderLayout.SOUTH);

this.getContentPane().add(p3,BorderLayout.EAST);

this.getContentPane().add(p5,BorderLayout.CENTER);

this.getContentPane().add(p6,BorderLayout.SOUTH);

this.getContentPane().add(p8,BorderLayout.WEST);

String[]strDate=DateFormat.getDateInstance().format(newDate())

.split("-");//获取日期

cld.set(Integer.parseInt(strDate[0]),Integer.parseInt(strDate[1])-1,0);

showCalendar(Integer.parseInt(strDate[0]),

Integer.parseInt(strDate[1]),cld);

jtfMonth.setEditable(false);//设置月份文本框为不可编辑

jtfYear.setText(strDate[0]);

jtfMonth.setText(strDate[1]);

this.showTextArea(strDate[2]);

ld.setFont(newFont("新宋体",Font.BOLD,24));

newTimer(lt).start();

newTimeThread().start();

this.setBounds(200,200,700,350);

this.setResizable(false);

this.setVisible(true);

}

publicvoidshowCalendar(intlocalYear,intlocalMonth,Calendarcld)

{

intDays=getDaysOfMonth(localYear,localMonth)+cld.get(Calendar.DAY_OF_WEEK)-2;

Object[]ai=newObject[7];

lastTime=0;

for(inti=cld.get(Calendar.DAY_OF_WEEK)-1;i<=Days;i++)

{

ai[i%7]=String.valueOf(i-(cld.get(Calendar.DAY_OF_WEEK)-2));

if(i%7==6)

{

dtm.addRow(ai);

ai=newObject[7];

lastTime++;

}

}

dtm.addRow(ai);

}

publicintgetDaysOfMonth(intYear,intMonth){

if(Month==1||Month==3||Month==5||Month==7||Month==8||Month==10||Month==12)

{

return31;

}

if(Month==4||Month==6||Month==9||Month==11)

{

return30;

}

if(Year%4==0&&Year%100!

=0||Year%400==0)//闰年

{

return29;

}

else{

return28;

}

}

publicvoidactionPerformed(ActionEvente)

{

if(e.getSource()==jtfYear||e.getSource()==bLastYear||e.getSource()==bNextYear||

e.getSource()==bLastMonth||e.getSource()==bNextMonth||e.getSource()==bAddClock)

{

intm,y;

try//控制输入的年份正确,异常控制

{

if(jtfYear.getText().length()!

=4)

{

thrownewNumberFormatException();

}

y=Integer.parseInt(jtfYear.getText());

m=Integer.parseInt(jtfMonth.getText());

}

catch(NumberFormatExceptionex)

{

JOptionPane.showMessageDialog(this,"请输入4位0-9的数字!

","年份有误",JOptionPane.ERROR_MESSAGE);

return;

}

ld.setText("没有选择日期");

for(inti=0;i

if(e.getSource()==bLastYear){jtfYear.setText(String.valueOf(--y));}

if(e.getSource()==bNextYear){jtfYear.setText(String.valueOf(++y));}

if(e.getSource()==bLastMonth)

{

if(m==1)

{

jtfYear.setText(String.valueOf(--y));

m=12;

jtfMonth.setText(String.valueOf(m));

}

else

{

jtfMonth.setText(String.valueOf(--m));

}

}

if(e.getSource()==bNextMonth)

{

if(m==12)

{

jtfYear.setText(String.valueOf(++y));

m=1;

jtfMonth.setText(String.valueOf(m));

}

else

{

jtfMonth.setText(String.valueOf(++m));

}

}

cld.set(y,m-1,0);

showCalendar(y,m,cld);

}

if(e.getSource()==bAddClock){

try{

Clockclock=newClock();

clock.start();

if(Integer.parseInt(h1.getText())<0||Integer.parseInt(h1.getText())>23||

Integer.parseInt(m1.getText())<0||Integer.parseInt(m1.getText())>59)

{

throw(newException());

}

}

catch(Exceptionex){

JOptionPane.showMessageDialog(this,"时数应该为0——23,分钟数应该为0——59","时间有误",JOptionPane.ERROR_MESSAGE);

}

}

}

publicvoidmouseClicked(MouseEvente)

{

jta.setText(null);

intr=table.getSelectedRow();

intc=table.getSelectedColumn();

if(table.getValueAt(r,c)==null)

{

ld.setText("没有选择日期");

}

else

{

this.showTextArea(table.getValueAt(r,c));

}

}

privatevoidshowTextArea(Objectselected)

{//在这里将公历化为农历

ld.setText(jtfYear.getText()+"年"+jtfMonth.getText()+"月"+selected+"日");

}

publicstaticvoidmain(String[]args)

{

JFrame.setDefaultLookAndFeelDecorated(true);

JDialog.setDefaultLookAndFeelDecorated(true);

newh_main1();

jta.setText(today());

}

privatevoidupdateTimeText(StringtimeZoneId){

if(timeZoneId!

=null){

TimeZonetimeZone=TimeZone.getTimeZone(timeZoneId);

dateFormat.setTimeZone(timeZone);

Calendarcalendar=Calendar.getInstance();

calendar.setTimeZone(timeZone);

timeField.setText(dateFormat.format(calendar.getTime()));

}else{

timeField.setText(null);

}

}

privateclassTimeSelectedChangedListenerimplementsItemListener{

publicvoiditemStateChanged(ItemEvente){

if(e.getStateChange()==ItemEvent.SELECTED){

if(e.getItem()instanceofString){

s=e.getItem().toString();

}

}

}

}

privateclassTimeThreadextendsThread{

publicvoidrun(){

while(true){

updateTimeText(s);

try{

Thread.sleep(100);

}catch(InterruptedExceptione){

e.printStackTrace();

}

}

}

}

classClockextendsThread//闹钟线程

{

publicvoidrun(){

while(true){

Calendarnow=Calendar.getInstance();

inth=now.get(Calendar.HOUR_OF_DAY);//获取小时

intmi=now.get(Calendar.MINUTE);//获取分钟

ints=now.get(Calendar.SECOND);//获取秒钟

intss=h*3600+mi*60+s;

if(ss>(Integer.parseInt(h1.getText())*3600+Integer.parseInt(m1.getText())*60+0)

&&ss

{

jta1.setText("闹钟启动");

}

else{

jta1.setText("没有正在提示的闹钟");

}

}

}

}

classTimerextendsThread//显示系统时间

{

privateJLabellt;

privateSimpleDateFormatfy=newSimpleDateFormat("yyyy.MM.ddG'at'HH:

mm:

ssz");

privatebooleanb=true;

publicTimer(JLabellt)

{

this.lt=lt;

}

publicvoidrun()

{

while(true){

try{

lt.setText(fy.format(newDate()));

this.sleep(1000);

}

ca

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 工程科技 > 能源化工

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1