package 建立连接;
import java.sql.*;
public class Conn {
Connection con;
public Connection getConnection()
{
try {
Class.forName("com.mysql.cj.jdbc.Driver");//加载数据库驱动类,需要导入java包在下面提取
System.out.println("数据库驱动程序成功");
}catch(ClassNotFoundException e){
e.printStackTrace();
}
try {
con=DriverManager.getConnection("jdbc:mysql://localhost:3306/my_text3?"
+ "useUnicode=true&characterEncoding=utf8&characterSetResults=utf8","zhangzetao","545267257zzt");
/* jdbc:mysql:// 是指JDBC连接方式;localhost: 是指你的本机地址;3306 :SQL数据库的端口号;jdbc :就是你要连接的数据库的地址。*/
System.out.println("数据库连接成功");
}catch(SQLException e) {
e.printStackTrace();
}
return con;
}
public static void main(String[] args) {
Conn c = new Conn();
c.getConnection();
}
}
https://www.weiyun.com/disk/folder/391e802005737f58b8b9bccee1297a20
在编写普通Java项目时,可以直接将此文件复制到项目中,然后右键选择build path。
在编写java web时,可以直接将此文件复制到tomcat安装目录的lib文件夹中。