资源简介
学生信息管理系统
主要功能:
(1)系统以菜单方式工作
(2)学生信息录入功能---输入
(3)学生信息浏览功能---输出
(4)查询、排序功能---算法
(5)按学号查询
(6)按姓名查询
(7)学生信息的删除与修改
下载包中包括代码、任务书以及实验报告
代码片段和文件信息
package com.dao;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
public class DBManager {
public static Connection getConnection() {
try {
Class.forName(“org.gjt.mm.mysql.Driver“).newInstance();
} catch (InstantiationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
String url = “jdbc:mysql://localhost/coursedesign“;
Connection conn;
try {
conn = DriverManager.getConnection(url “root“ “123456“);
return conn;
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return null;
}
}
public static void closeConnection(Connection conn) {
if (conn != null) {
try {
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 439 2011-01-02 19:55 studentInformationSystem\.classpath
文件 345 2011-01-02 18:35 studentInformationSystem\.myme
文件 1242 2011-01-02 20:28 studentInformationSystem\.project
文件 1050 2011-01-02 21:15 studentInformationSystem\src\com\dao\DBManager.java
文件 148 2011-01-02 20:42 studentInformationSystem\src\com\manager\AdminLogin.java
文件 865 2011-01-02 21:06 studentInformationSystem\src\com\manager\AdminLoginImpl.java
文件 371 2011-01-02 19:40 studentInformationSystem\src\com\manager\StudentManager.java
文件 4166 2011-01-03 07:53 studentInformationSystem\src\com\manager\StudentManagerImpl.java
文件 1634 2011-01-02 23:50 studentInformationSystem\src\com\servlets\addStudentServlet.java
文件 1184 2011-01-02 21:23 studentInformationSystem\src\com\servlets\AdminLoginServlet.java
文件 1087 2011-01-03 07:58 studentInformationSystem\src\com\servlets\deleteStudentServlet.java
文件 1143 2011-01-02 23:18 studentInformationSystem\src\com\servlets\SelectAllStudentServlet.java
文件 1268 2011-01-02 23:39 studentInformationSystem\src\com\servlets\SelectStudentByIdServlet.java
文件 1187 2011-01-02 23:40 studentInformationSystem\src\com\servlets\SelectStudentByNameServlet.java
文件 1626 2011-01-03 07:42 studentInformationSystem\src\com\servlets\UpdateStudentServlet.java
文件 312 2011-01-02 20:14 studentInformationSystem\src\com\studentBeans\Admin.java
文件 1083 2011-01-02 19:12 studentInformationSystem\src\com\studentBeans\Student.java
文件 891 2011-01-02 22:40 studentInformationSystem\WebRoot\addStudent.jsp
文件 892 2011-01-02 23:54 studentInformationSystem\WebRoot\adminManager.jsp
文件 583 2011-01-03 07:57 studentInformationSystem\WebRoot\deleteStuInfoById.jsp
文件 1066 2011-01-02 21:29 studentInformationSystem\WebRoot\index.jsp
文件 39 2011-01-02 18:35 studentInformationSystem\WebRoot\me
文件 580 2011-01-02 22:51 studentInformationSystem\WebRoot\selectStuInfoById.jsp
文件 584 2011-01-02 22:51 studentInformationSystem\WebRoot\selectStuInfoByName.jsp
文件 1226 2011-01-02 23:33 studentInformationSystem\WebRoot\showAllStuInfo.jsp
文件 1221 2011-01-02 23:36 studentInformationSystem\WebRoot\showStuInfoByName&Id.jsp
文件 926 2011-01-03 00:00 studentInformationSystem\WebRoot\updateStudent.jsp
文件 587 2011-01-03 00:01 studentInformationSystem\WebRoot\updateStuInfoById.jsp
文件 1468 2011-01-02 21:15 studentInformationSystem\WebRoot\WEB-INF\classes\com\dao\DBManager.class
文件 187 2011-01-02 20:42 studentInformationSystem\WebRoot\WEB-INF\classes\com\manager\AdminLogin.class
............此处省略36个文件信息
- 上一篇:数据结构课程设计抽签游戏
- 下一篇:开源的超级玛丽源代码
相关资源
- 数据结构课程设计抽签游戏
- 语音压缩与回放
- 网吧管理系统带源代码
- 汇编写的电子琴 微机原理课程设计
- 最新计算机系毕业设计选题大全.doc
- 汽车尾灯课程设计报告
- 数据库课程设计新华书店图书销售系
- 密码学课程设计 一个简易的数字签名
- WINDOWS聊天课程设计报告
- 组成原理课程设计完整版
- 课程设计:调幅发射与接收系统
- 计算机组装与维护课程设计
- 数据库系统课程设计——银行管理系
- Linux课程设计—基于服务器的文件共享
- PTV热力学计算助手
- EDA课程设计交通灯
- springcloud+skywalkingdemo.zip
- 操作系统课程设计含报告和源代码,
- 数字逻辑课程设计--彩灯循环显示电路
- 本人做的一个网站,是一个学生会的
- springboot与netty整合
- EDA课程设计报告-彩灯控制器
- 数字电子密码锁课程设计
- GP学习总结
- 数电课程设计交通灯
- 微机原理倒计时器课程设计
- 校园导航问题 数据结构
- 用51单片机设计的GPS定位系统论文
- 力控锅炉水位水温监控系统课程设计
- 机械设计课程设计——圆柱齿轮减速
评论
共有 条评论