import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
//String url=jdbc:mysql://localhost: 3300/test
public class xls {
private static Logger logger=Logger.getLogger(Sample2.class);
public static void main(String[] args) {
Connection connection=null;
try{
Class.forName("com.mysql.jdbc.Driver");
}catch(ClassNotFoundException e){
logger.error(e);
}String url="jdbc:mysql://localhost:3300/test";
try{
connection=DriverManager.getConnection(url,"root","root");
System.out.println("连接成功");
}catch(SQLException e){
logger.error(e);
}finally{
if(null!=connection){
try{
connection.close();
System.out.println("关闭连接");
}catch(SQLException e){
logger.error(e);
}
}
}
}
}