• 大小: 1.76MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-11-17
  • 语言: 其他
  • 标签: java  mysql  

资源简介

该系统为数据库期末大作业实现,包括实验文档和源代码,实现了注册,登录,叫车,接单,退单等功能

资源截图

代码片段和文件信息

package sql;

import java.awt.Graphics;
import java.awt.Image;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;
import java.io.IOException;
import java.sql.SQLException;
import java.sql.Statement;

import javax.imageio.ImageIO;
import javax.swing.JButton;
import javax.swing.Jframe;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JTextArea;

import com.mysql.jdbc.Connection;

public class Cmessage extends Jframe{
    public Cmessage(){
     launch();
    }
    
    Jframe frame = new Jframe(“请输入车辆信息“);
    JPanel panel = new JPanel(){
protected void paintComponent(Graphics g) {
Image bg;
try {
bg = ImageIO.read(new File(“E:\\java\\sql\\5.jpg“));
g.drawImage(bg 0 0 getWidth() getHeight() null);
} catch (IOException e) {
e.printStackTrace();
}
}
};
JLabel a = new JLabel(“请填写您爱车的详细信息“);
JLabel a1 = new JLabel(“车牌号码“);
JTextArea text1 = new JTextArea();
JLabel a2 = new JLabel(“车辆类型“);
JTextArea text2 = new JTextArea();
JLabel a3 = new JLabel(“荷载人数“);
JTextArea text3 = new JTextArea();
JLabel a4 = new JLabel(“品牌“);
JTextArea text4 = new JTextArea();
JLabel a5 = new JLabel(“车体颜色“);
JTextArea text5 = new JTextArea();
JButton button1 = new JButton(“提交信息“);
JButton button2 = new JButton(“退出“);

    public void launch(){
     button1.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
Connection con = (Connection) Shuju.getCon();
try {
Statement statement =  con.createStatement();
String sql = “insert into car values(??????)“;
java.sql.PreparedStatement preStmt = con.prepareStatement(sql);
preStmt.setString(1text1.getText());
preStmt.setString(2 text2.getText());
preStmt.setInt(3 Integer.parseInt(text3.getText()));
preStmt.setString(4 text4.getText());
preStmt.setString(5 Dzhuce.D_numb);
preStmt.setString(6 text5.getText());
preStmt.executeUpdate();
preStmt.close();
con.close();
JOptionPane.showMessageDialog(panel “信息添加成功“);
} catch (SQLException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
new Login();
frame.dispose();
}
});
    
     button2.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
System.exit(0);
}
});
    
     a.setBounds(1403015030);
     a1.setBounds(30806030);
     text1.setBounds(1058030030);
     a2.setBounds(301306030);
     text2.setBounds(10513030030);
     a3.setBounds(301806030);
     text3.setBounds(10518030030);
     a4.setBounds(302306030);
     text4.setBounds(10523030030);
     a5.setBounds(302806030);
     text5.setBounds(10528030030);
     button1.setBounds(10035010030);
     button2.setBounds(2303501

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

     文件    1922102  2019-04-24 12:04  滴滴打车系统\滴滴打车系统实验报告.docx

     文件       3619  2018-12-15 12:46  滴滴打车系统\滴滴打车系统源程序\Cmessage.java

     文件       9126  2018-12-18 09:28  滴滴打车系统\滴滴打车系统源程序\Driver.java

     文件       6872  2018-12-18 08:21  滴滴打车系统\滴滴打车系统源程序\Dzhuce.java

     文件       1111  2018-12-17 08:56  滴滴打车系统\滴滴打车系统源程序\Files.java

     文件       5029  2018-12-17 14:39  滴滴打车系统\滴滴打车系统源程序\Login.java

     文件       5813  2018-12-27 17:14  滴滴打车系统\滴滴打车系统源程序\Manager.java

     文件       2318  2018-12-17 14:40  滴滴打车系统\滴滴打车系统源程序\MangerLogin.java

     文件      10533  2018-12-18 15:52  滴滴打车系统\滴滴打车系统源程序\Passager.java

     文件       6266  2018-12-18 08:21  滴滴打车系统\滴滴打车系统源程序\Pzhuce.java

     文件        664  2018-12-27 17:19  滴滴打车系统\滴滴打车系统源程序\readme.txt

     文件        824  2018-12-14 16:59  滴滴打车系统\滴滴打车系统源程序\Shuju.java

     文件       1876  2018-12-17 08:12  滴滴打车系统\滴滴打车系统源程序\zuce.java

     目录          0  2018-12-27 17:14  滴滴打车系统\滴滴打车系统源程序

     目录          0  2019-04-24 12:04  滴滴打车系统

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

              1976153                    15


评论

共有 条评论