eclipse添加jdbc驱动并测试数据库连接成功
1)将下载后的MySQL驱动解压,得到:mysql-connector-java-8.0.14.jar驱动文件。
(2)在Java项目中创建lib文件夹,并将驱动文件放入该文件夹中。
(3)点击选中驱动文件 → 鼠标右键 → 构建路径 → 添加至构建路径。
英文版的Eclipse:点击选择驱动文件 → 鼠标右键 → Build Path → Add to Build Path。
添加如下测试代码:
package javademo;
import java.sql.*;
public class HelloWord {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("hello,word");
try {
Class.forName("com.mysql.cj.jdbc.Driver");
System.out.println("Success loading Mysql Driver!");
} catch (Exception e) {
System.out.println("Fail to loading Mysql Derver!");
e.printStackTrace();
}
try {
Connection connect = DriverManager.getConnection(
"jdbc:mysql://localhost:3306/数据库名称?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT",
"用户名", "密码");
System.out.println("Success connect to Mysql!");
} catch (SQLException e) {
System.out.print("get data error!");
e.printStackTrace();
}
}