欢迎来到天天文库
浏览记录
ID:51479301
大小:270.00 KB
页数:19页
时间:2020-03-25
《列车时刻查询及售票系统.doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、1需求分析(小标题黑体五号字)l系统用户管理;l车票信息管理(添加、修改、删除);l票务查询(站站查询、车次查询、站名查询);l订票;l退票;l统计。2总体设计l系统流程图列车售票系统退票票务查询退出系统订票系统管理车站查询站站查询车次查询统计管理修改车票信息删除车票信息增加车票信息l数据库关系表l数据库表1.列车信息总表属性名类型长度车次Char10车种Char10始发站Char10终点站Char10发时Char10到时Char102.车票信息表属性名类型长度车次Char10座位类型Char10票价Int4数量Int41.订票信息表属性名
2、类型长度车次Char10座位类型Char10姓名Char10身份证号Char20联系方式Char203.详细设计1.主界面核心代码:importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;publicclassMenu{publicstaticvoidmain(Stringargs[]){newEmp();}}classEmpextendsJFrameimplementsActionListener{privatestaticfinallongserialVersionUID=
3、1L;JButtonb1,b2,b3,b4,b5;Emp(){super("列车售票系统");b1=newJButton("系统用户管理");b2=newJButton("票务查询");b3=newJButton("订票");b4=newJButton("退票");b5=newJButton("退出系统");setLayout(newGridLayout(5,1));add(b1);add(b2);add(b3);add(b4);add(b5);b1.addActionListener(this);b2.addActionListener(
4、this);b3.addActionListener(this);b4.addActionListener(this);b5.addActionListener(this);addWindowListener(newwinX());setLocation(550,200);setSize(240,320);setVisible(true);}publicvoidactionPerformed(ActionEvente){if(e.getSource()==b1){dispose();newxtgl();}if(e.getSource()==
5、b2){dispose();newpwcx();}if(e.getSource()==b3){dispose();newdp();}if(e.getSource()==b4){dispose();newtp();}if(e.getSource()==b5){System.exit(0);}}}1.查询核心代码:importjava.awt.*;importjava.awt.event.*;importjava.sql.*;importjavax.swing.*;classcccxextendsJFrameimplementsActionLi
6、stener{privatestaticfinallongserialVersionUID=1L;JLabellab1;JButtonb1,b2;JTextFieldinput;Connectioncon;Statementstmt;ResultSetrs;Stringsql;JPanelp1,p2,p3;JTextAreaa1;cccx(){super("车次查询");p1=newJPanel();p2=newJPanel();p3=newJPanel();lab1=newJLabel("车次:");p1.add(lab1);input=
7、newJTextField(10);p1.add(input);b1=newJButton("查询");b2=newJButton("返回");p2.add(b1);p2.add(b2);a1=newJTextArea();a1.setEditable(false);p3.add(a1);setLayout(newBorderLayout());add(p1,BorderLayout.NORTH);add(p2,BorderLayout.SOUTH);add(p3,BorderLayout.CENTER);b1.addActionListe
8、ner(this);b2.addActionListener(this);addWindowListener(newwinX());setLocation(400,200);se
此文档下载收益归作者所有