Java连接mysql数据库

1.先创建一个Java项目testMysql(我使用的是intellij编辑器)。

2.导入mysql的驱动包。

(1)

Java连接mysql数据库

(2)

Java连接mysql数据库

(4)

Java连接mysql数据库

3.编写代码

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException; /**
* Created by wuy on 2015/7/24.
*/
public class testMysql {
private Connection con;
private String user="root";
private String password="root";
private String className="com.mysql.jdbc.Driver";
private String url = "jdbc:mysql://127.0.0.1:3306/goods";
public testMysql(){
try{
Class.forName(className);
System.out.println("加载数据库驱动成功!");
}catch(ClassNotFoundException e){
System.out.println("加载数据库驱动失败!");
e.printStackTrace();
}
} /**创建数据库连接*/
public Connection getCon(){
try {
con= DriverManager.getConnection(url, user, password);
System.out.println("创建数据库连接成功!");
} catch (SQLException e) {
System.out.print(con);
System.out.println("创建数据库连接失败!");
con=null;
e.printStackTrace();
}
return con;
} public void closed(){
try{
if(con!=null){
con.close();
}
}catch(SQLException e){
System.out.println("关闭con对象失败!");
e.printStackTrace();
}
} public static void main(String[] args)
{
testMysql c=new testMysql();
c.getCon();
c.closed();
}
} 4.运行结果截图
Java连接mysql数据库
上一篇:review的一个收获popstate,addEventListener:false ,split,jquery cache


下一篇:CSS样式表与格式布局