• 大小: 2.25M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Java
  • 标签:

资源简介


jsp大作业时用的图书管理系统。亲测可用,内含当时截图。代码十分简单,基本功能都有。刚开始学习可做参考 连接的mysql数据库

资源截图

代码片段和文件信息

import java.sql.DriverManager;
import java.sql.SQLException;

import com.sun.corba.se.pept.transport.Connection;

public class DBHelper{
private static final String driver = “com.mysql.jdbc.Driver“; //数据库驱动
//连接数据库的URL地址
private static final String url = “jdbc:mysql://localhost:3306/Library?useUnicode=true & characterEncoding=UTF-8“; 
private static final String username = “root“;//数据库的用户名
private static final String password = “199702110“; // 数据库密码

private static Connection conn=null;//(导入类java.sql下的)

//静态代码块负责加载驱动
static{
try{

Class.forName(driver);

}
catch(Exception ex){
ex.printStackTrace();
}
}
//单例模式返回数据库连接对象
public static Connection getConnection() throws Exception{
if(conn==null){
conn = (Connection) DriverManager.getCon

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-07-02 10:24  JSP\
     文件       58278  2018-07-01 15:39  JSP\1.JPG
     文件       30918  2018-07-01 16:20  JSP\10.JPG
     文件       32107  2018-07-01 16:21  JSP\11.JPG
     文件       29531  2018-07-01 16:21  JSP\12.JPG
     文件       30733  2018-07-01 16:22  JSP\13.JPG
     文件       25850  2018-07-01 16:23  JSP\14.JPG
     文件       25872  2018-07-01 16:24  JSP\15.JPG
     文件       21678  2018-07-01 16:25  JSP\16.JPG
     文件       25143  2018-07-01 16:25  JSP\17.JPG
     文件       49960  2018-07-01 16:26  JSP\18.JPG
     文件       33163  2018-07-01 16:28  JSP\19.JPG
     文件       47400  2018-07-01 15:43  JSP\2.JPG
     文件       26411  2018-07-01 16:28  JSP\20.JPG
     文件       30863  2018-07-01 16:29  JSP\21.JPG
     文件       20984  2018-07-01 16:29  JSP\22.JPG
     文件       26054  2018-07-01 16:30  JSP\23.JPG
     文件       28291  2018-07-01 16:31  JSP\24.JPG
     文件       40312  2018-07-01 16:34  JSP\25.JPG
     文件       21098  2018-07-01 16:34  JSP\26.JPG
     文件       58914  2018-07-01 16:35  JSP\27.JPG
     文件       31757  2018-07-01 16:36  JSP\28.JPG
     文件       33800  2018-07-01 16:36  JSP\29.JPG
     文件       45885  2018-07-01 15:44  JSP\3.JPG
     文件       49697  2018-07-01 16:37  JSP\30.JPG
     文件       29211  2018-07-01 16:38  JSP\31.JPG
     文件       35107  2018-07-01 16:39  JSP\32.JPG
     文件       68335  2018-07-01 16:40  JSP\33.JPG
     文件       42478  2018-07-01 16:41  JSP\34.JPG
     文件       42275  2018-07-01 16:42  JSP\35.JPG
     文件       44245  2018-07-01 16:42  JSP\36.JPG
............此处省略50个文件信息

评论

共有 条评论