实例介绍
【实例简介】通过页面对于数据库数据进行,增改查,是一个比较初级的代码,适合刚入门的人学习研究
【实例截图】




【核心代码】package mysystem;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.SwingConstants;
import dialog.addDialog;
import dialog.deleteDialog;
import dialog.queryDialog;
import dialog.updateDialog;
public class frame extends JFrame implements ActionListener {
JMenuBar menubar = new JMenuBar();
JMenu studentMenu = new JMenu("信息");
//JMenu studentMenu1 = new JMenu("成绩");
JMenuItem additem = new JMenuItem("学生录入");
//JMenuItem additem1 = new JMenuItem("学生成绩录入");
JMenuItem updateitem = new JMenuItem("学生修改");
//JMenuItem updateitem1 = new JMenuItem("学生成绩修改");
JMenuItem queryitem = new JMenuItem("学生查询");
//JMenuItem queryitem1 = new JMenuItem("学生成绩查询");
JMenuItem deleteitem = new JMenuItem("学生删除");
// JMenuItem deleteitem1 = new JMenuItem("学生成绩删除");
JLabel label = new JLabel("学生学籍管理系统");
addDialog add = null;
updateDialog update = null;
queryDialog query = null;
deleteDialog delete = null;
public frame() {
this.setTitle("学生学籍管理系统");
this.setJMenuBar(menubar);
menubar.add(studentMenu);
//menubar.add(studentMenu1);
studentMenu.add(additem);
//studentMenu1.add(additem);
studentMenu.add(updateitem);
//studentMenu1.add(updateitem);
studentMenu.add(queryitem);
//studentMenu1.add(queryitem);
studentMenu.add(deleteitem);
//studentMenu1.add(deleteitem);
additem.addActionListener(this);
updateitem.addActionListener(this);
queryitem.addActionListener(this);
deleteitem.addActionListener(this);
label.setFont(new java.awt.Font("DialogInput", 1, 48));
label.setHorizontalAlignment(SwingConstants.CENTER);
label.setForeground(Color.pink);
this.getContentPane().add(label);
this.setSize(600, 400);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setVisible(true);
}
/**
*
*/
private static final long serialVersionUID = 1L;
@Override
public void actionPerformed(ActionEvent e) {
if (e.getSource() == additem) {
add = new addDialog(this);
} else if (e.getSource() == updateitem) {
update = new updateDialog(this);
} else if (e.getSource() == queryitem) {
query = new queryDialog(this);
} else if (e.getSource() == deleteitem) {
delete = new deleteDialog(this);
}
}
}
public class shujuku {
private static Connection cnt = null;
private static PreparedStatement pre = null;
private static ResultSet rst = null;
private static String dbDriver = "com.mysql.jdbc.Driver";
private static String dbURL = "jdbc:mysql://localhost:3306/mysystem?serverTimezone=GMT%2B8&useSSL=false";
private static String dbId = "root";
private static String dbPsw = "11171010";
public static int countrow = 0;
private static String[] RstColumn = new String[10];
private static ResultSetMetaData rsmd;
// �������ݿ�����,�������ݿ�
public static Connection getConnection() {
try {
Class.forName(dbDriver);
cnt = DriverManager.getConnection(dbURL, dbId, dbPsw);
} catch (Exception e) {
System.out.println("数据库连接异常");
e.printStackTrace();
}
return cnt;
}
public static void dBClose() {
if (cnt != null) {
try {
cnt.close();
} catch (Exception e) {
e.printStackTrace();
System.out.println("cnt关闭出现异常");
}
}
if (pre != null) {
try {
pre.close();
} catch (Exception e) {
e.printStackTrace();
System.out.println("pre关闭异常");
}
}
if (rst != null) {
try {
rst.close();
} catch (Exception e) {
e.printStackTrace();
System.out.println("rst关闭异常");
}
}
}
}
【实例截图】





【核心代码】package mysystem;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.SwingConstants;
import dialog.addDialog;
import dialog.deleteDialog;
import dialog.queryDialog;
import dialog.updateDialog;
public class frame extends JFrame implements ActionListener {
JMenuBar menubar = new JMenuBar();
JMenu studentMenu = new JMenu("信息");
//JMenu studentMenu1 = new JMenu("成绩");
JMenuItem additem = new JMenuItem("学生录入");
//JMenuItem additem1 = new JMenuItem("学生成绩录入");
JMenuItem updateitem = new JMenuItem("学生修改");
//JMenuItem updateitem1 = new JMenuItem("学生成绩修改");
JMenuItem queryitem = new JMenuItem("学生查询");
//JMenuItem queryitem1 = new JMenuItem("学生成绩查询");
JMenuItem deleteitem = new JMenuItem("学生删除");
// JMenuItem deleteitem1 = new JMenuItem("学生成绩删除");
JLabel label = new JLabel("学生学籍管理系统");
addDialog add = null;
updateDialog update = null;
queryDialog query = null;
deleteDialog delete = null;
public frame() {
this.setTitle("学生学籍管理系统");
this.setJMenuBar(menubar);
menubar.add(studentMenu);
//menubar.add(studentMenu1);
studentMenu.add(additem);
//studentMenu1.add(additem);
studentMenu.add(updateitem);
//studentMenu1.add(updateitem);
studentMenu.add(queryitem);
//studentMenu1.add(queryitem);
studentMenu.add(deleteitem);
//studentMenu1.add(deleteitem);
additem.addActionListener(this);
updateitem.addActionListener(this);
queryitem.addActionListener(this);
deleteitem.addActionListener(this);
label.setFont(new java.awt.Font("DialogInput", 1, 48));
label.setHorizontalAlignment(SwingConstants.CENTER);
label.setForeground(Color.pink);
this.getContentPane().add(label);
this.setSize(600, 400);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setVisible(true);
}
/**
*
*/
private static final long serialVersionUID = 1L;
@Override
public void actionPerformed(ActionEvent e) {
if (e.getSource() == additem) {
add = new addDialog(this);
} else if (e.getSource() == updateitem) {
update = new updateDialog(this);
} else if (e.getSource() == queryitem) {
query = new queryDialog(this);
} else if (e.getSource() == deleteitem) {
delete = new deleteDialog(this);
}
}
}
private static Connection cnt = null;
private static PreparedStatement pre = null;
private static ResultSet rst = null;
private static String dbDriver = "com.mysql.jdbc.Driver";
private static String dbURL = "jdbc:mysql://localhost:3306/mysystem?serverTimezone=GMT%2B8&useSSL=false";
private static String dbId = "root";
private static String dbPsw = "11171010";
public static int countrow = 0;
private static String[] RstColumn = new String[10];
private static ResultSetMetaData rsmd;
// �������ݿ�����,�������ݿ�
public static Connection getConnection() {
try {
Class.forName(dbDriver);
cnt = DriverManager.getConnection(dbURL, dbId, dbPsw);
} catch (Exception e) {
System.out.println("数据库连接异常");
e.printStackTrace();
}
return cnt;
}
public static void dBClose() {
if (cnt != null) {
try {
cnt.close();
} catch (Exception e) {
e.printStackTrace();
System.out.println("cnt关闭出现异常");
}
}
if (pre != null) {
try {
pre.close();
} catch (Exception e) {
e.printStackTrace();
System.out.println("pre关闭异常");
}
}
if (rst != null) {
try {
rst.close();
} catch (Exception e) {
e.printStackTrace();
System.out.println("rst关闭异常");
}
}
}
}
好例子网口号:伸出你的我的手 — 分享!
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论