• 大小: 62KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-06
  • 语言: Java
  • 标签: Java  火车查票  Access  

资源简介

软件以Access为后台数据库,连接简易,对于该系统的数据量的使用恰好。软件成功实现了车票查询及添加功能。具有车次、车站、中转站查询功能。界面友好。

资源截图

代码片段和文件信息



import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

public class AddData extends Jframe implements ActionListener
{
//创建按钮
private JButton jbTrain = new JButton(“车次添加“);
private JButton jbStation = new JButton(“车站添加“);
private JButton jbRelation = new JButton(“关系添加“);
private JButton jbTsub = new JButton(“提交“);
private JButton jbRsub = new JButton(“提交“);
private JButton jbSsub = new JButton(“提交“);
//创建面板
private JPanel jpLeft = new JPanel();
private JPanel jpRight = new JPanel();
private JPanel jpTrain = new JPanel();
private JPanel jpStation = new JPanel();
private JPanel jpRelation = new JPanel();
//创建标签
private JLabel jlTname = new JLabel(“车名“);
private JLabel jlTstartstation = new JLabel(“始发站“);
private JLabel jlTterminus = new JLabel(“终点站“);
private JLabel jlTtype = new JLabel(“列车类型“);
private JLabel jlSname = new JLabel(“车站名称“);
private JLabel jlRstarttime = new JLabel(“开车时间“);
private JLabel jlRarrivetime = new JLabel(“到站时间“);
private JLabel jlRtname = new JLabel(“车名“);
private JLabel jlRsname = new JLabel(“站名“);
private JLabel jlSfs = new JLabel(“车站简称“);
//创建文本框
private JTextField jtfTname = new JTextField();
private JTextField jtfTstartstation = new JTextField();
private JTextField jtfTterminus = new JTextField();
private JTextField jtfTtype = new JTextField();
private JTextField jtfSname = new JTextField();
private JTextField jtfRstarttime = new JTextField();
private JTextField jtfRarrivetime = new JTextField();
private JTextField jtfRtname = new JTextField();
private JTextField jtfRsname = new JTextField();
private JTextField jtfSfs = new JTextField();
//创建分割条
private JSplitPane jsp = new JSplitPane(JSplitPane.HORIZONTAL_SPLITjpLeftjpRight);
public AddData()
{
this.jpLeft.setLayout(null);
this.jpRight.setLayout(new CardLayout());
this.add(jsp);
//设置分割条的位置
jsp.setDividerLocation(150);
//设置分割条的大小
jsp.setDividerSize(2);
//设置jbTrain的大小并添加
jbTrain.setBounds(257510030);
jpLeft.add(jbTrain);
//注册事件监听器
jbTrain.addActionListener(this);
//设置jbStation的大小并添加
jbStation.setBounds(2517510030);
jpLeft.add(jbStation);
//注册事件监听器
jbStation.addActionListener(this);
//设置jbRelation的大小并添加
jbRelation.setBounds(2527510030);
jpLeft.add(jbRelation);
//注册事件监听器
jbRelation.addActionListener(this);
//初始化卡片面板
initCardPanel();
//添加卡片
jpRight.add(jpTrain“train“);
jpRight.add(jpStation“station“);
jpRight.add(jpRelation“relation“);
//加载窗体图标
Image icon = Toolkit.getDefaultToolkit().getImage(“img/icon.gif“);
//设置窗体图标
this.setIconImage(icon);
//设置窗口标题大小可见性关闭动作
this.setBounds(300100500450);
this.setVisible(true);
this.settitle(“列车添加“);
this.setDefaultCloseOperation(Jframe.DISPOSE_ON_CLOSE);
}
public void initCardPanel()
{
//设置布局为空
jpTrain.setLayout(null);
jpStation.setLayout(null);
jpRelation.setLayout(null);
//设置车名标签大小及位置并添加

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        301  2012-11-25 22:50  Train\.classpath

     文件        381  2012-11-25 22:50  Train\.project

     文件        629  2012-12-01 16:40  Train\.settings\org.eclipse.jdt.core.prefs

     文件       9708  2012-12-10 17:30  Train\bin\AddData.class

     文件       6545  2012-12-10 17:30  Train\bin\DBTrain.class

     文件       2735  2012-12-10 17:30  Train\bin\PopupRoute.class

     文件       4488  2012-12-10 17:30  Train\bin\PopupStation.class

     文件        605  2012-12-10 17:30  Train\bin\TrainTime$1.class

     文件      22027  2012-12-10 17:30  Train\bin\TrainTime.class

     文件       3855  2012-12-08 14:53  Train\img\icon.gif

     文件      13715  2012-12-07 22:07  Train\src\AddData.java

     文件       7695  2012-12-07 22:07  Train\src\DBTrain.java

     文件       1945  2012-12-07 22:07  Train\src\PopupRoute.java

     文件       2850  2012-12-08 22:54  Train\src\PopupStation.java

     文件      29307  2012-12-08 23:11  Train\src\TrainTime.java

     文件     499712  2012-12-08 16:52  Train\Train.mdb

     目录          0  2012-11-25 22:50  Train\.settings

     目录          0  2012-12-10 17:30  Train\bin

     目录          0  2012-12-10 16:59  Train\img

     目录          0  2012-12-08 16:53  Train\src

     目录          0  2012-12-08 23:29  Train

----------- ---------  ---------- -----  ----

               606498                    21


评论

共有 条评论