资源简介
Made by dgl ,这个是我用java做的一个数据库课设,有点不足之处,我没做模糊查询,各位可以自己参考修改完善下哈。
代码片段和文件信息
package com.lin.sql;
import javax.swing.JPanel;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JTextField;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import javax.swing.AbstractButton;
import javax.swing.ButtonGroup;
import javax.swing.DefaultComboBoxModel;
import javax.swing.JComboBox;
import javax.swing.JRadioButton;
import javax.swing.JButton;
public class Addinformation extends JPanel {
/**
*
*/
private static final long serialVersionUID = 1L;
private JTextField Stuidvalue;
private JTextField Namevalue;
private JTextField Birthdayvalue;
private JTextField Hometownvalue;
private JComboBox collegevalue;
private JComboBox majorvalue;
private Connection ct = new ConnectionDB().getConnection();
private Statement stmt = null;
private AbstractButton radioButton;
private AbstractButton radioButton_1;
private AbstractButton men;
private AbstractButton women;
private String sx = “男“;
private String xueyuan = null;// 学院ID
private String nuw = null;// 专业id
private String zhiye = null;// 职业id
private JButton sureadd = new JButton(“\u786E\u5B9A\u6DFB\u52A0“);
private JComboBox year = new JComboBox();
private JComboBox month = new JComboBox();
private String tag = “待就业“;
public Addinformation() {
setToolTipText(“\u8BA1\u7B97\u673A\r\n\u4E66“);
setLayout(null);
JLabel Stuid = new JLabel(“学号“);
Stuid.setBounds(35 27 72 18);
add(Stuid);
Stuidvalue = new JTextField();
Stuidvalue.setBounds(121 24 128 24);
add(Stuidvalue);
Stuidvalue.setColumns(10);
Namevalue = new JTextField();
Namevalue.setColumns(10);
Namevalue.setBounds(121 64 128 24);
add(Namevalue);
JLabel name = new JLabel(“姓名“);
name.setBounds(35 67 72 18);
add(name);
JLabel Birthday = new JLabel(“出生年月“);
Birthday.setBounds(35 154 72 18);
add(Birthday);
Hometownvalue = new JTextField();
Hometownvalue.setColumns(10);
Hometownvalue.setBounds(121 190 128 24);
add(Hometownvalue);
JLabel Hometown = new JLabel(“籍贯“);
Hometown.setBounds(35 193 72 18);
add(Hometown);
JLabel major = new JLabel(“专业“);
major.setBounds(296 67 72 18);
add(major);
JComboBox majorvalue = new JComboBox();
try {
PreparedStatement ps2 = ct.prepareStatement(“select Zymc from tb_Zyinfo order by Zybh asc“);
ResultSet rs2 = ps2.executeQuery();
while (rs2.next())// 利用循环,读取每条记录
{
majorvalue.addItem(rs2.getobject(1));// 将每条记录添加到jComboBox3中去
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
majorvalue.setBounds(395 64 141 24);
add(majorvalue);
majorvalue.setSelectedIndex(
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
....... 404 2018-02-18 11:41 Madebydgl\Lin\Lin\.classpath
....... 379 2018-02-07 18:21 Madebydgl\Lin\Lin\.project
....... 598 2018-02-07 18:21 Madebydgl\Lin\Lin\.settings\org.eclipse.jdt.core.prefs
文件 1389 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Addinformation$1.class
文件 1389 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Addinformation$2.class
文件 1328 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Addinformation$3.class
文件 1326 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Addinformation$4.class
文件 3722 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Addinformation$5.class
文件 1051 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Addinformation$6.class
文件 9210 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Addinformation.class
文件 1498 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Addmenuetab.class
文件 1936 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Colleage$1.class
文件 1140 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Colleage$2.class
文件 1140 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Colleage$3.class
文件 1939 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Colleage$4.class
文件 2652 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Colleage.class
文件 1853 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\ConnectionDB.class
文件 791 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Daiye$1$1.class
文件 3316 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Daiye$1.class
文件 3682 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Daiye.class
文件 2271 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Danwei$1.class
文件 1163 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Danwei$2.class
文件 3968 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Danwei.class
文件 1953 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\deldanwei$1.class
文件 1529 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\deldanwei$2.class
文件 4476 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\deldanwei.class
文件 1957 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Deletes$1.class
文件 1537 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Deletes$2.class
文件 4816 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\Deletes.class
文件 1334 2018-03-09 14:09 Madebydgl\Lin\Lin\bin\com\lin\sql\deltab.class
............此处省略60个文件信息
- 上一篇:Android播放在线音频文件
- 下一篇:Android移动警务查询系统
相关资源
- 基于java web的网上购物系统
- JAVA语言程序设计.pdf
- 基于Java Swing&Mysql;的图书管理系统
- redis 在java中的使用工程
- 微信支付java版完整demo-Eclipse项目包含
- javafx2.0中文api
- 北大青鸟 S2 java 项目 案例 易买网
- java+extjs4.0批量上传图片
- Selenium WebDriver的笔记整理
- mysql-connector-java-8.0.20.zip
- 留言板源代码java
- 贝叶斯网络java,实验用
- 数据库课程设计42199
- Java窗口美化包(substance.jar和JTattoo)
- 数据库课程设计 jsp+sqlserver 教室信息
- Concurrent Programming in Java: Design Princip
- java2实用教程电子版
- JAVA仓库管理系统源码(毕业设计 课程
- 基于JAVA的火车票售票系统毕业论文
- JAVA WEB练习真题
- java 考试系统
- java电子书店管理系统-毕业设计
- java田径运动会管理系统
- javafx组件-中文文档
- 学生档案管理系统 java课程设计
- poi java读取excel所需jar包
- java 高校教材管理系统
- 化妆品商店管理
- java程序设计基础篇章第五版课后编程
- JAVA语言程序设计与数据结构答案
评论
共有 条评论