首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

IDEA+MySql学生管理系统

后端 2.63MB 5 需要积分: 1
立即下载

资源介绍:

用户通过系统界面进入,选择相应功能:增加学生档案信息、增加课程信息、增加学生选课信息确认无误后将其信息保存到数据库中,此外对增加的信息可完成增删改查操作
package ManageStudent; import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.sql.SQLException; /** * 系统主页面的操作 */ public class mySystemJFrame extends JFrame implements ActionListener { //显示如下功能菜单:输入数据、删除信息、修改信息、查询信息; private JComboBox insert,delete,update,search; private int section; //用于功能标识 private JTable jtable;//用于做查询结果的表格 private Font x = new Font("宋体",Font.BOLD,20); //文本字体 public mySystemJFrame(){ super("学生管理系统"); Dimension dim = getToolkit().getScreenSize(); // 获得屏幕分辨率 this.setBounds(dim.width/10,dim.height/10,dim.width *3/ 5, dim.height *3/ 5); // 窗口居中 this.setDefaultCloseOperation(EXIT_ON_CLOSE); ImageIcon background = new ImageIcon("ManageStudent\\images\\2.png"); JLabel label = new JLabel(background); label.setBounds(0, 0, this.getWidth(), this.getHeight()); JPanel imagePanel = (JPanel) this.getContentPane(); imagePanel.setOpaque(false); this.getLayeredPane().add(label, new Integer(Integer.MIN_VALUE)); JMenuBar menubar=new JMenuBar(); //菜单栏 this.setJMenuBar(menubar); //框架上添加菜单栏 String menustr[]={"输入数据","删除信息","修改信息","查询信息"}; JMenu menu[]=new JMenu[menustr.length]; for (int i=0;i

资源文件列表:

学生管理系统 .zip 大约有48个文件
  1. 06-学生选课系统/ManageStudent/
  2. 06-学生选课系统/ManageStudent/.idea/
  3. 06-学生选课系统/ManageStudent/.idea/.gitignore 50B
  4. 06-学生选课系统/ManageStudent/.idea/dbnavigator.xml 20.98KB
  5. 06-学生选课系统/ManageStudent/.idea/encodings.xml 205B
  6. 06-学生选课系统/ManageStudent/.idea/libraries/
  7. 06-学生选课系统/ManageStudent/.idea/libraries/lib.xml 379B
  8. 06-学生选课系统/ManageStudent/.idea/misc.xml 279B
  9. 06-学生选课系统/ManageStudent/.idea/modules.xml 273B
  10. 06-学生选课系统/ManageStudent/.idea/workspace.xml 18.59KB
  11. 06-学生选课系统/ManageStudent/lib/
  12. 06-学生选课系统/ManageStudent/ManageStudent.iml 494B
  13. 06-学生选课系统/ManageStudent/ManageStudent/
  14. 06-学生选课系统/ManageStudent/ManageStudent/dbFunction.java 7.78KB
  15. 06-学生选课系统/ManageStudent/ManageStudent/images/
  16. 06-学生选课系统/ManageStudent/ManageStudent/images/1.png 509.23KB
  17. 06-学生选课系统/ManageStudent/ManageStudent/images/2.png 791.5KB
  18. 06-学生选课系统/ManageStudent/ManageStudent/images/btn1.png 5.5KB
  19. 06-学生选课系统/ManageStudent/ManageStudent/images/btn2.png 3.64KB
  20. 06-学生选课系统/ManageStudent/ManageStudent/images/btn3.png 7.32KB
  21. 06-学生选课系统/ManageStudent/ManageStudent/images/btn4.png 7.26KB
  22. 06-学生选课系统/ManageStudent/ManageStudent/images/登录.png 6.36KB
  23. 06-学生选课系统/ManageStudent/ManageStudent/LoginJFrame.java 2.46KB
  24. 06-学生选课系统/ManageStudent/ManageStudent/mySystemJFrame.java 10.96KB
  25. 06-学生选课系统/ManageStudent/out/
  26. 06-学生选课系统/ManageStudent/out/production/
  27. 06-学生选课系统/ManageStudent/out/production/ManageStudent/
  28. 06-学生选课系统/ManageStudent/out/production/ManageStudent/.idea/
  29. 06-学生选课系统/ManageStudent/out/production/ManageStudent/.idea/.gitignore 50B
  30. 06-学生选课系统/ManageStudent/out/production/ManageStudent/.idea/dbnavigator.xml 20.98KB
  31. 06-学生选课系统/ManageStudent/out/production/ManageStudent/.idea/libraries/
  32. 06-学生选课系统/ManageStudent/out/production/ManageStudent/.idea/libraries/lib.xml 379B
  33. 06-学生选课系统/ManageStudent/out/production/ManageStudent/.idea/misc.xml 279B
  34. 06-学生选课系统/ManageStudent/out/production/ManageStudent/.idea/modules.xml 273B
  35. 06-学生选课系统/ManageStudent/out/production/ManageStudent/.idea/workspace.xml 18.28KB
  36. 06-学生选课系统/ManageStudent/out/production/ManageStudent/ManageStudent.iml 494B
  37. 06-学生选课系统/ManageStudent/out/production/ManageStudent/ManageStudent/
  38. 06-学生选课系统/ManageStudent/out/production/ManageStudent/ManageStudent/dbFunction.class 5.97KB
  39. 06-学生选课系统/ManageStudent/out/production/ManageStudent/ManageStudent/images/
  40. 06-学生选课系统/ManageStudent/out/production/ManageStudent/ManageStudent/images/1.png 509.23KB
  41. 06-学生选课系统/ManageStudent/out/production/ManageStudent/ManageStudent/images/2.png 791.5KB
  42. 06-学生选课系统/ManageStudent/out/production/ManageStudent/ManageStudent/images/btn1.png 5.5KB
  43. 06-学生选课系统/ManageStudent/out/production/ManageStudent/ManageStudent/images/btn2.png 3.64KB
  44. 06-学生选课系统/ManageStudent/out/production/ManageStudent/ManageStudent/images/btn3.png 7.32KB
  45. 06-学生选课系统/ManageStudent/out/production/ManageStudent/ManageStudent/images/btn4.png 7.26KB
  46. 06-学生选课系统/ManageStudent/out/production/ManageStudent/ManageStudent/images/登录.png 6.36KB
  47. 06-学生选课系统/ManageStudent/out/production/ManageStudent/ManageStudent/LoginJFrame.class 3.81KB
  48. 06-学生选课系统/ManageStudent/out/production/ManageStudent/ManageStudent/mySystemJFrame.class 7.57KB
0评论
提交 加载更多评论
其他资源 简单的屏幕保护程序
简单的屏幕保护程序,与大家共享,有什么问题可以和我联系
ImageCache
图片缓存 mit Steve Pomeroy 开源作品
ssm学生成绩管理系统源码+开题报告+文献综述+任务书.zip
ssm学生成绩管理系统源码+开题报告+文献综述+任务书.zip
任务管理器 可以看映像路径的
任务管理器,可以看映像路径的
实战struts2用户登录
struts2入门实例
人大金仓8.6.0、达梦8.1.2.79 连接驱动
人大金仓8.6.0、达梦8.1.2.79 连接驱动
C#Windows 服务
C#Windows 服务例子
netsvc
概要
使用 NETSVC.EXE 来控制和显示 WindowsNT 服务在本地或远程计算机。
您可能使用 NETSVC.EXE 来查看当前驱动程序状态。
更多信息
NETSVC.EXE 是命令行实用程序使您得以管理和查询服务 WindowsNT 工作站或服务器上。
为了使用此工具, 目标计算机上首先必须足够权限。 在大多数情况下, 是需要本地管理员 equivalencies。
SYNTAX: NETSVC servicename \ \ computername /command
可用命令选项:
/query Queries the status of the service
/start Starts the service
/stop Stops the service
/pause Pauses the service
/continue Starts the paused service
/list Lists installed services and drivers
此外, /list 选项可跟命令和文件名将输出写入文件。 例如:
/ NETSVC \\ABRAMELIN LIST > SERVICES.TXT
NETSVC 位于 \platform 下 WindowsNT 资源工具包光盘上或 SMS 1.1 光盘, 下 \PSSTOOLS\X86.BIN 用于 x 86 计算机上 \netadmin 子目录, (x 86, alpha, ppc, mips)。
备注:: SMS CD-ROM 包含 X 86 版本。