Java工具类及配置文件模板大全
JDBC通用增删改查
JDBC工具类
/**
* JDBC工具类
*/
public class Util1 {
//加载驱动
static {
try {
Class.forName("com.mysql.cj.jdbc.Driver");
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}
//获得连接
public static Connection getConnection(){
try {
DriverManager.getConnection("jdbc:mysql://localhost:3306/mysql?characterEnconding
共有 0 条评论