欢迎来到天天文库
浏览记录
ID:40105136
大小:61.00 KB
页数:14页
时间:2019-07-21
《学生管理系统源码》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、/***功能:简易学生管理系统*1.能过姓名查询;*2.增.删.改学生信息**/packagecom.sutmanage.version2;importjava.awt.*;importjava.awt.event.ActionEvent;importjava.awt.event.ActionListener;importjava.awt.event.MouseEvent;importjava.awt.event.MouseListener;importjava.util.*;importjavax.swing.*;importcom.mysql.jdbc.PreparedStatement;
2、importjava.sql.*;publicclassStuManageSystemVersion1extendsJFrameimplementsActionListener{//定义组件,界面由三部分组成,上部是姓名查询部分,为一个JPanel,中间是一个JScorllPane,底部也是一个JPanel,放了三个按钮JPaneltop,bottom;JScrollPanejsp;JTablejt;JButtonsearch,add,delete,update;JLabelname;JTextFieldjtf;StuModelsm=null;publicStuManageSystemVers
3、ion1(){//创建组件//Top组件top=newJPanel();name=newJLabel("请输入姓名");jtf=newJTextField(22);search=newJButton("查询");search.addActionListener(this);top.add(name);top.add(jtf);top.add(search);sm=newStuModel();sm.queryStu("select*fromstus",null);jt=newJTable(sm);jt.setSelectionBackground(Color.RED);jsp=newJScrol
4、lPane(jt);//底部组件bottom=newJPanel();add=newJButton("增加");add.addActionListener(this);delete=newJButton("删除");delete.addActionListener(this);update=newJButton("修改");update.addActionListener(this);bottom.add(add);bottom.add(delete);bottom.add(update);//添加组件this.add(top,BorderLayout.NORTH);this.add(jsp,
5、BorderLayout.CENTER);this.add(bottom,BorderLayout.SOUTH);//设置窗体属性this.setSize(400,300);this.setTitle("学生管理系统");intw=Toolkit.getDefaultToolkit().getScreenSize().width;inth=Toolkit.getDefaultToolkit().getScreenSize().height;this.setLocation(w/2-200,h/2-150);this.setDefaultCloseOperation(JFrame.EXIT_ON
6、_CLOSE);this.setVisible(true);}publicstaticvoidmain(String[]args){//TODOAuto-generatedmethodstubnewStuManageSystemVersion1();}//更新数据模型publicvoidupdStuModel(){sm=newStuModel();sm.queryStu("select*fromstus",null);jt.setModel(sm);}@OverridepublicvoidactionPerformed(ActionEvente){//TODOAuto-generatedmet
7、hodstubif(e.getSource()==search){Strings=jtf.getText().trim();Stringname[]={s};Stringsql="";if(s.length()!=0){sql="select*fromStuswhereStuName=?";}elseif(s.length()==0){sql="select*fromStus";name=null
此文档下载收益归作者所有