String driver = "com.mysql.jdbc.Driver";
String url= "jdbc:mysql://127.0.0.1:3306/zhushen";
String user = "root";
String password = "Code531182";
try {
Class.forName(driver);
}catch(ClassNotFoundException e) {
System.out.println("Sorry,can`t find the Driver!");
}
try{
Connection conn=DriverManager.getConnection(url1,user,password);//开始连接
if(!conn.isClosed())
System.out.println("Succeeded connecting to the Database!");
}catch(Exception e){
e.printStackTrace();
}