java-Mysql学生管理系统

Window1//主方法
package stu_zizhu1;

import java.awt.Button;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.Point;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;

public class Window1 {
public static void main(String[] args) {
JFrame jf=new JFrame("学生管理系统");

    JButton b1=new JButton("添加");JButton b2=new JButton("查找");JButton b3=new JButton("修改");JButton b4=new JButton("删除");JButton b5=new JButton("浏览");FlowLayout flow = new FlowLayout(FlowLayout.LEFT,10,10);JPanel jp=new JPanel(flow);jp.add(b1);jp.add(b2);jp.add(b3);jp.add(b4);jp.add(b5);jf.add(jp);jp.setBackground(Color.red);jf.setSize(500,500);jf.setLocation(500,500);jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);jf.setVisible(true);b1.addActionListener(new ActionListener() {public void actionPerformed(ActionEvent e) {Add1 a1=new Add1();}});b2.addActionListener(new ActionListener() {public void actionPerformed(ActionEvent e) {Find1 find1=new Find1();}});b3.addActionListener(new ActionListener() {public void actionPerformed(ActionEvent e) {Modify1 modify1=new Modify1();}});b4.addActionListener(new ActionListener() {public void actionPerformed(ActionEvent e) {Delete1 delete1=new Delete1();}});b5.addActionListener(new ActionListener() {public void actionPerformed(ActionEvent e) {Look1 look1=new Look1();}});}

}

package stu_zizhu1;

import java.awt.Button;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.sql.DriverManager;
import java.sql.SQLException;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;

import com.mysql.jdbc.Connection;
import com.mysql.jdbc.PreparedStatement;
import com.mysql.jdbc.Statement;

public class Add1 extends JFrame{

//定义标签
JLabel jlid=new JLabel("ID:");
JLabel jlname=new JLabel("Name:");
JLabel jlage=new JLabel("Age:");
JLabel jlsex=new JLabel("Sex:");
JLabel jlscore=new JLabel("Score:");
JLabel jlbirthday=new JLabel("Birthday:");
//定义文本框JTextField jfid=new JTextField("",20);
JTextField jfname=new JTextField("",20);
JTextField jfage=new JTextField("",20);
JTextField jfsex=new JTextField("",20);
JTextField jfscore=new JTextField("",20);
JTextField jfbirthday=new JTextField("",20);//定义按钮(本人再次严重犯错JButton被我写成Button 真的是头疼)
JButton tianjia=new JButton("添加");
JButton chongzhi =new JButton("重置");
JButton fanhui=new JButton("返回");public  Add1() {//定义面板//jpid面板添加标签(jlid)&&文本框(jfid)JPanel jpid=new JPanel();jpid.add(jlid);jpid.add(jfid);JPanel jpname=new JPanel();jpname.add(jlname);jpname.add(jfname);JPanel jpage=new JPanel();jpage.add(jlage);jpage.add(jfage);JPanel jpsex=new JPanel();jpsex.add(jlsex);jpsex.add(jfsex);JPanel jpscore=new JPanel();jpscore.add(jlscore);jpscore.add(jfscore);JPanel jpbirthday=new JPanel();jpbirthday.add(jlbirthday);jpbirthday.add(jfbirthday);JPanel jpbutton=new JPanel(new GridLayout(1,3));jpbutton.add(tianjia);jpbutton.add(chongzhi);jpbutton.add(fanhui);//按钮添加监听器tianjia.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {Connection conn=null;PreparedStatement prestat=null;Statement stat =null;String sql ="insert into student1(id,name,age,sex,score,birthday) "+"values(?,?,?,?,?,?)";//少加一个问好?try{Class.forName("Driver");System.out.println("JBDC 加载成功!");}catch(Exception a){System.out.println("JBDC 狗带!");a.printStackTrace();}try {conn= (Connection) DriverManager.getConnection("jdbc:mysql://localhost:3306/yonghu?useSSL=false","root","123456");prestat=(PreparedStatement) conn.prepareStatement(sql);prestat.setString(1,jfid.getText());prestat.setString(2,jfname.getText());prestat.setString(3,jfage.getText());prestat.setString(4,jfsex.getText());prestat.setString(5,jfscore.getText());prestat.setString(6,jfbirthday.getText());prestat.executeUpdate();} catch (SQLException s) {// TODO Auto-generated catch blocks.printStackTrace();}finally {try {conn.close();} catch (SQLException e1) {// TODO Auto-generated catch blocke1.printStackTrace();}}}});fanhui.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {Window1 window1=new Window1();}});chongzhi.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {jfid.setText("");jfname.setText("");jfage.setText("");jfsex.setText("");jfscore.setText("");jfbirthday.setText("");}});this.setTitle("添加学生信息");this.setLayout(new GridLayout(9,1));this.add(jpid);this.add(jpname);this.add(jpage);this.add(jpsex);this.add(jpscore);this.add(jpbirthday);this.add(jpbutton);this.setLocation(400,300);this.setSize(350,300);this.setVisible(true);}

}
package stu_zizhu1;

import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;

import com.mysql.jdbc.Connection;
import com.mysql.jdbc.Statement;

public class Find1 extends JFrame{
JLabel jlid=new JLabel("ID:");
JTextField jtfid=new JTextField("",20);

JLabel jlname=new JLabel("Name:");
JLabel jlage=new JLabel("Age:");
JLabel jlsex=new JLabel("Sex:");
JLabel jlscore=new JLabel("Score:");
JLabel jlbirthday=new JLabel("Birthday:");//JLabel jid=new JLabel();
JLabel jname=new JLabel();
JLabel jage=new JLabel();
JLabel jsex=new JLabel();
JLabel jscore=new JLabel();
JLabel jbirthday=new JLabel();
//此处按钮一定要设置成JButton
JButton query=new JButton("查询");
JButton ret=new JButton("返回");
//此处不可有voidpublic   Find1() {JPanel jpid=new JPanel();jpid.add(jlid);jpid.add(jtfid);JPanel jpname=new JPanel();jpname.add(jlname);jpname.add(jname);JPanel jpage=new JPanel();jpage.add(jlage);jpage.add(jage);JPanel jpsex=new JPanel();jpsex.add(jlsex);jpsex.add(jsex);JPanel jpscore=new JPanel();jpscore.add(jlscore);jpscore.add(jscore);JPanel jpbirthday=new JPanel();jpbirthday.add(jlbirthday);jpbirthday.add(jbirthday);JPanel button1=new JPanel(new GridLayout(1,1));button1.add(query);button1.add(ret);query.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e1) {Connection conn=null;Statement state=null;ResultSet res=null;//此处犯错 忘记写idString sql="select id,name,age,sex,score,birthday from student1;";try {Class.forName("com.mysql.jdbc.Driver");} catch (ClassNotFoundException e) {System.out.println("123");e.printStackTrace();}try {conn=(Connection) DriverManager.getConnection("jdbc:mysql://localhost:3306/yonghu?useSSL=false","root","123456");state=(Statement) conn.createStatement();res=state.executeQuery(sql);while(res.next()) {if(res.getString(1).equals(jtfid.getText())) {jname.setText(res.getString(2));jage.setText(res.getString(3));jsex.setText(res.getString(4));jscore.setText(res.getString(5));jbirthday.setText(res.getString(6));}}} catch (SQLException e) {System.out.println("1234");e.printStackTrace();}finally {try {conn.close();} catch (SQLException e) {// TODO Auto-generated catch blocke.printStackTrace();}}}});ret.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {Window1 window1=new Window1();}});this.setTitle("学生查询系统 ");this.setLayout(new GridLayout(9,1));//9组建this.add(jpid);this.add(jpname);this.add(jpage);this.add(jpsex);this.add(jpscore);this.add(jpbirthday);this.add(button1);this.setSize(300, 400);this.setLocation(300, 400);this.setVisible(true);}

}
package stu_zizhu1;

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.GridLayout;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Vector;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.JTextField;

import com.mysql.jdbc.Connection;
import com.mysql.jdbc.PreparedStatement;

public class Look1 extends JFrame{
Connection conn =null;
PreparedStatement pre=null;
ResultSet res=null;

JScrollPane jps=null;
Vector columnsname=null;
Vector rowData=null;public  Look1() {JPanel jp1=new JPanel(); jp1.setBackground(Color.gray);jp1.setSize(500, 500);JLabel jb=new JLabel("欢迎使用学生管理系统");jb.setBounds(0, 0, 50, 50);jp1.add(jb);JPanel jp=new JPanel();//JLabel jb1=new JLabel("欢迎使用学生管理系统");jp.setSize(400, 400);jp.setBackground(Color.green);//jp.add(jb1);jp.add(jp1);//定义列名columnsname=new Vector();columnsname.add("id");columnsname.add("name");columnsname.add("age");columnsname.add("sex");columnsname.add("score");columnsname.add("birthday");rowData =new Vector();try {Class.forName("com.mysql.jdbc.Driver");conn=(Connection) DriverManager.getConnection("jdbc:mysql://localhost:3306/yonghu?useSSL=false","root","123456");pre=(PreparedStatement) conn.prepareStatement("select *from student1");res=pre.executeQuery();while(res.next()) {Vector hang =new Vector();hang.add(res.getString(1));hang.add(res.getString(2));hang.add(res.getString(3));hang.add(res.getString(4));hang.add(res.getString(5));hang.add(res.getString(6));rowData.add(hang);}System.out.println("load  ok!");} catch (Exception e) {System.out.println("go die");e.printStackTrace();}finally {try {res.close();pre.close();conn.close();System.out.println("close ok");} catch (SQLException e) {// TODO Auto-generated catch blocke.printStackTrace();}}JTable jtable=new JTable(rowData,columnsname);jps=new JScrollPane(jtable);this.add(jps);this.setTitle("学生浏览系统");this.setLayout(new GridLayout(3,4));this.add(jp);this.setSize(400, 500);this.setLocation(300,400);this.setVisible(true);this.setResizable(false);}

}
package stu_zizhu1;

import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;

import com.mysql.jdbc.Connection;
import com.mysql.jdbc.PreparedStatement;
import com.mysql.jdbc.Statement;

import First.Window;

public class Modify1 extends JFrame{
//定义标签
JLabel jlid=new JLabel("ID:");
JLabel jlname=new JLabel("Name:");
JLabel jlage=new JLabel("Age:");
JLabel jlsex=new JLabel("Sex:");
JLabel jlscore=new JLabel("Score:");
JLabel jlbirthday=new JLabel("Birthday:");
//定义文本框

JTextField jfid=new JTextField("",20);
JTextField jfname=new JTextField("",20);
JTextField jfage=new JTextField("",20);
JTextField jfsex=new JTextField("",20);
JTextField jfscore=new JTextField("",20);
JTextField jfbirthday=new JTextField("",20);//定义按钮(本人再次严重犯错JButton被我写成Button 真的是头疼)
JButton change=new JButton("修改");
JButton chongzhi =new JButton("重置");
JButton fanhui=new JButton("返回");public  Modify1() {//定义面板//jpid面板添加标签(jlid)&&文本框(jfid)JPanel jpid=new JPanel();jpid.add(jlid);jpid.add(jfid);JPanel jpname=new JPanel();jpname.add(jlname);jpname.add(jfname);JPanel jpage=new JPanel();jpage.add(jlage);jpage.add(jfage);JPanel jpsex=new JPanel();jpsex.add(jlsex);jpsex.add(jfsex);JPanel jpscore=new JPanel();jpscore.add(jlscore);jpscore.add(jfscore);JPanel jpbirthday=new JPanel();jpbirthday.add(jlbirthday);jpbirthday.add(jfbirthday);JPanel jpbutton=new JPanel(new GridLayout(1,3));jpbutton.add(change);jpbutton.add(chongzhi);jpbutton.add(fanhui);change.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent arg0) {//String id1=jfid.getText();String name1=jfname.getText();//此处犯错String age1=jfage.getText();String sex1=jfsex.getText();String score1=jfscore.getText();String birthday1=jfbirthday.getText();Connection conn=null;Statement state=null;

// PreparedStatement prestate=null;
ResultSet res=null;

            String sql="select id,name,age,sex,score,birthday from student1;";try{Class.forName("com.mysql.jdbc.Driver");}catch(Exception d){System.out.println("jdbc fall");d.printStackTrace();}try{conn=(Connection) DriverManager.getConnection("jdbc:mysql://localhost:3306/yonghu?useSSL=false","root","123456");state=(Statement) conn.createStatement();res=state.executeQuery(sql);while (res.next()){//changeif (res.getString(1).equals(jfid.getText())){try{Class.forName("com.mysql.jdbc.Driver");}catch(Exception d){System.out.println("jdbc fall");d.printStackTrace();}String sql1="update student1 set name='"+name1+"'where id='"+jfid.getText()+"'";String sql2="update student1 set age='"+age1+"'where id='"+jfid.getText()+"'";String sql3="update student1 set sex='"+sex1+"'where id='"+jfid.getText()+"'";String sql4="update student1 set score='"+score1+"'where id='"+jfid.getText()+"'";String sql5="update student1 set birthday='"+birthday1+"'where id='"+jfid.getText()+"'";try {conn=(Connection) DriverManager.getConnection("jdbc:mysql://localhost:3306/yonghu?useSSL=false","root","123456");state=(Statement) conn.createStatement();state.execute(sql1);state.execute(sql2);state.execute(sql3);state.execute(sql4);state.execute(sql5);} catch (SQLException g) {// TODO Auto-generated catch blockg.printStackTrace();}try{state.close();conn.close();}catch(SQLException ar){ar.printStackTrace();}break;}//change end}}catch (SQLException e1) {// TODO Auto-generated catch blocke1.printStackTrace();}finally{try{conn.close();}catch(SQLException ar){ar.printStackTrace();}}}});fanhui.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e){Window window = new Window();           }           });chongzhi.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {jfid.setText("");jfname.setText("");jfage.setText("");jfsex.setText("");jfscore.setText("");jfbirthday.setText("");}});this.setTitle("修改学生信息");this.setLayout(new GridLayout(9,1));this.add(jpid);this.add(jpname);this.add(jpage);this.add(jpsex);this.add(jpscore);this.add(jpbirthday);this.add(jpbutton);this.setLocation(400,300);this.setSize(350,300);this.setVisible(true);}

}

转载于:https://www.cnblogs.com/Pythons/p/10932308.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/386738.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Docker版本Jenkins的使用

Docker版本Jenkins的使用 低调的微胖关注赞赏支持 Docker版本Jenkins的使用 12018.05.15 18:21:50字数 1202阅读 22588 一. 什么是Jenkins Jenkins是当前非常流行的一款持续集成工具,可以帮助大家把更新后的代码自动部署到服务器上运行。 二. 为什么用docker版…

小程序 setData 中的坑,其实好像...

最近这段时间在写微信小程序,有一个页面需要动态修改 data 中的数据,而这里似乎是个坑。 1、正常修改 正常修改很简单,当触发 change 事件时,数据和页面都会同时发生改变。这个也不用多说,很简单的例子。 2、如何修改对…

CentOS HarBor安装与配置

HarBor 安装与配置 Prerequisites for the target host ResourceCapacityDescriptionCPUminimal 2 CPU4 CPU is preferredMemminimal 4GB8GB is preferredDiskminimal 40GB160GB is preferred 环境 centos7harbor v1.6.3python v2.7及以上docker v1.10及以上docker-compose …

幂等

一种方案是创建唯一索引。在数据库中针对我们需要约束的资源字段创建唯一索引,可以防止插入重复数据。但是,遇到分库分表的场景,唯一索引也就不那么好使了, 此时,我们可以先查询数据库,判断约束的资源字段是…

ELK 删除索引只保留10天

delelk.sh: #!/bin/bash #定时清除elk索引,10天 DATEdate -d "10 days ago" %Y.%m.%d curl -XDELETE "http://127.0.0.1:9400/*-${DATE}" 127.0.0.1:9400 ES的地址 定时任务执行此脚本 30 17 * bash /home/scripts/delelk.sh

通过ceph-deploy搭建ceph 13.2.5 mimic

一、ceph介绍 操作系统需要内核版本在kernel 3.10或CentOS7以上版本中部署通过deploy工具安装简化部署过程,本文中选用的ceph-deploy版本为1.5.39至少准备6个环境,分别为1个ceph-admin管理节点、3个mon/mgr/mds节点、2个osd节点二、ceph安装 1. 部署ceph…

openstack服务编排

heat列出所有组件时报错 ERROR: 503 Service Unavailable The server is currently unavailable. Please try again at a later time. 错误:503服务不可用 cu错 w误 : 5 0 3 f服 w务 b不 kě可 yng用 The server is currently unavailable. Please tr…

phpstudy如何安装景安ssl证书 window下apache服务器网站https访问

1. 下载景安免费证书 https://www.zzidc.com/help/helpDetail?id555 2.文件解压上传至服务器,位置自己决定 3. 调整apache配置 景安原文链接:https://www.zzidc.com/help/helpDetail?id555 ① 确保你的apache编译了ssl模块,这是支持ssl证书…

docker下gitlab安装配置使用(完整版)

docker下gitlab安装配置使用(完整版) 22018.12.16 00:07:57字数 737阅读 17595 docker 安装gitlab以及使用 一、安装及配置 1.gitlab镜像拉取 # gitlab-ce为稳定版本,后面不填写版本则默认pull最新latest版本 $ docker pull gitlab/gitlab-ce拉取镜像 2.运行g…

hdfs的特性、命令、安全模式、基准测试

1.第一点:如何理解hdfs分布式文件系统,每台机器出一块磁盘,凑成一个大的硬盘,大的硬盘的容量来自各个服务器的硬盘容量之和。 你出5毛,我出5毛,大家凑成1块。 2. HDFS 是 Hadoop Distribute File System 的…

如何push一个docker镜像到DockerHub上

如何push一个docker镜像到DockerHub上 2018.01.03 11:31:39字数 139阅读 202 有时候想要保存自己的docker镜像,又不想自己搭建docker registry,那么就可以了借用DockerHub来用,一般不会有多少人在意你的镜像,不过万一被人看上了…

测开2 - Python(文件操作)

把第一次写好漏掉的点写在最前面:文件读写的内容都要求是字符串。 几种文件操作的模式: 1. r,读模式(默认模式),只能读不能写,文件不存在时报错 2. w,写模式,只能写不能读…

使用docker在CentOS7上搭建WordPress

前言 本文基于Centos 7 环境的docker搭建操作,centos 7 用 firewalld 替换了iptables作为默认防火墙操作,但以前习惯了iptables 就不与时俱进了。 环境准备 systemctl disable firewalld systemctl stop firewalld setenforce 0 sed -i "s/SELIN…

企业级应用,如何实现服务化一(项目架构演化)

1.企业级应用架构演化 1.1.架构演化图 1.2.文字描述 #单一应用架构当网站流量很小时,只需一个应用,将所有功能都部署在一起,以减少部署节点和成本#垂直应用架构当访问量逐渐增大,单一应用增加机器带来的加速度越来越小&#xff0c…

Alpine 操作系统是一个面向安全的轻型 Linux 发行版

Alpine 操作系统是一个面向安全的轻型 Linux 发行版。它不同于通常 Linux 发行版,Alpine 采用了 musl libc 和 busybox 以减小系统的体积和运行时资源消耗,但功能上比 busybox 又完善的多,因此得到开源社区越来越多的青睐。在保持瘦身的同时&…

ASP.NET MVC Filter过滤机制(过滤器、拦截器)

https://blog.csdn.net/knqiufan/article/details/82413885 本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/knqiufan/article/details/82413885参考文章:1、https://www.cnblogs.com/webapi/p/5669057.html 2、htt…

elk docker

换了个运行环境,重新搭建一套公司本地内部的ELK,之前也搭过(可访问:https://yanganlin.com/31.html),最近做什么事情都想用Docker,这次也用Docker,还算顺利,没掉什么坑里,上次搭建,也用用的6.2的版本,这都过了一年,Elk这三个产品,都已经上7了,用docker搭建的还是用6.2.4,稳定不…

LeetCode Largest Number

1231231转载于:https://www.cnblogs.com/ZHONGZHENHUA/p/10954249.html

有个需求mybatis 插入的时候不知道有哪些字段,需要动态的传入值和字段

有个需求mybatis 插入的时候不知道有哪些字段,需要动态的传入值和字段, Java code? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Test public void testAddProductGuaranty() { //1 560 50000 2014/10/2 0:00:00 2014/11/1 0…

readonly的用法

转载于:https://www.cnblogs.com/w123w/p/10958567.html