首页上一页 1 下一页尾页 1 条记录 1/1页
mysql驱动加载失败,连接失败,怎么解决
发表在Java视频课程答疑
2018-11-26
是否精华
是
否
版块置顶:
是
否
package com.demo;
import java.sql.*;
public class Conn {
Connection con;
public Connection getConmection() {
try {
Class.forName("com.mysql.jdbc.Driver");
System.out.println("数据库驱动加载成功");
} catch (Exception e) {
e.printStackTrace();
}
try {
con=DriverManager.getConnection("jdbc:mysql:"+"//127.0.0.1:3306/test","root","root");
} catch (Exception e) {
e.printStackTrace();
}
return con;
}
public static void main(String[] args) {
Conn c = new Conn();
c.getConmection();
}
}