赞
踩
最开始
1.新建一个项目
2.项目根目录新建一个文件夹,命名lib
3.File菜单里找到Project Structure
4.选中lib,再点击右边的Add Content Root
5.找到jar包位置并导入
6.点击apply应用,再点击OK,成功导入jar包,包是解析过的,可以打开的
7.直接复制粘贴到这个lib文件夹里面也是不能直接用的,我们还要把包 add as library 来保证各种依赖关系。右键jar包,点击Add as Library,跳出弹窗,点击OK。
8.src下new一个class,命名DBUtil(也可随意命名)
9.写DBUtil,高版本的MySQL数据库driver可以不写,3306为默认端口号可以省略。不是3306莫要省略
- import java.sql.*;
-
- public class DBUtil {
- // private static final String drive = "com.mysql.cj.jdbc.Driver";
- private static String url = "jdbc:mysql:///demo01db";
- //两个斜杠后的端口号为默认端口号3306时,可以省略,后面的demo01db是要连接的数据库名字
- private static String user = "root";
- private static String pwd = "Qq1851813040";
- public Connection conn = null;
- public Connection getConn() {
- try {
- conn = DriverManager.getConnection(url,user,pwd);
- System.out.println("数据库连接上了");
- } catch (SQLException throwables) {
- throwables.printStackTrace();
- }
- return conn;
- }
-
- public static void closeConn(Connection connection) {
- if (connection != null) {
- try {
- connection.close();
- } catch (SQLException throwables) {
- throwables.printStackTrace();
- }
- }
- }
-
- public static void closePs(PreparedStatement ps) {
- if (ps != null) {
- try {
- ps.close();
- } catch (SQLException throwables) {
- throwables.printStackTrace();
- }
-
- }
- }
-
- public static void closeRs(ResultSet rs){
- if(rs!=null){
- try {
- rs.close();
- } catch (SQLException throwables) {
- throwables.printStackTrace();
- }
- }
- }
-
- public static void main(String[] args) {
- DBUtil dbUtil = new DBUtil();
- dbUtil.getConn();
- }
- }
10.运行结果
add as library参考:(8条消息) add as library是什么?有什么用?如何打开?_小小的香辛料的博客-CSDN博客_add as libraryhttps://blog.csdn.net/doubleguy/article/details/104947149
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。