java連結mysql有五種方式,分別是:
(學習影片分享:java教學影片)
第一種方式:將使用者名稱和密碼封裝在Properties類別中
首先,匯入資料庫連線包這個是毋庸置疑的。建立一個jdbc驅動dirver。將資料庫(以MySQL為例)的url保存在所建立的字串url中。如果mysql版本低於8.0,則url儲存形式應該為:
String url = "jdbc:mysql://localhost:3306/test"
如果mysql版本為8.0版本或以上,url儲存形式為:
String url = "jdbc:mysql://localhost:3306/test?characterEncoding=UTF-8&serverTimezone=Asia/Shanghai";
這裡使用的mysql版本是8.0,所以後面加上了時區,否則預設是UTC時區,比北京時間晚8小時。
然後將mysql資料庫對應的user和password封裝在Properties類別中,最後透過Connection類別來建立資料庫連接,原始碼如下:
Driver driver = new com.mysql.jdbc.Driver(); String url = "jdbc:mysql://localhost:3306/test?characterEncoding=UTF-8&serverTimezone=Asia/Shanghai"; /* 将用户名和密码封装在Properties中 */ Properties info = new Properties(); info.setProperty("user","root"); info.setProperty("password","ab20010322"); Connection conn = driver.connect(url,info); System.out.println(conn);
第二種方式:在方式一的基礎上,利用反射實現驅動
將第一種方式中:
Driver driver = new com.mysql.jdbc.Driver();
改為:
Class clazz = Class.forName("com.mysql.jdbc.Driver"); Driver driver = (Driver) clazz.newInstance();
相對於第一種方式,兩種實現的功能相同,但是第二種方式利用反射來實現驅動,這樣可以避免使用第三方接口,使得程式碼有更好的可移植性。第二種方式原始碼如下:
/* 使用反射获取Driver类实例 与Driver driver = new com.mysql.jdbc.Driver()功能相同,只是不适用第三方接口,使得程序具有更好的可移植性 */ Class clazz = Class.forName("com.mysql.jdbc.Driver"); Driver driver = (Driver) clazz.newInstance(); /* 提供要连接的数据库 */ String url = "jdbc:mysql://localhost:3306/test?characterEncoding=UTF-8&serverTimezone=Asia/Shanghai"; /* 提供需要的用户名和密码 */ Properties info = new Properties(); info.setProperty("user","root"); info.setProperty("password","ab20010322"); Connection connection = driver.connect(url,info); System.out.println(connection);
第三種方式:使用DriveManager(classs)取代Drive
Class clazz = Class.forName("com.mysql.jdbc.Driver"); Driver driver = (Driver) clazz.newInstance(); /* 提供连接信息 */ String url = "jdbc:mysql://localhost:3306/test?characterEncoding=UTF-8&serverTimezone=Asia/Shanghai"; String user = "root"; String password = "ab20010322"; /* 注册驱动 */ DriverManager.registerDriver(driver); /* 获取连接 */ System.out.println(DriverManager.getConnection(url,user,password));
Driver driver = (Driver) clazz.newInstance(); DriverManager.registerDriver(driver);
Class.forName("com.mysql.jdbc.Driver");
String url = "jdbc:mysql://localhost:3306/test?characterEncoding=UTF-8&serverTimezone=Asia/Shanghai"; String user = "root"; String password = "ab20010322"; /* 加载Driver */ Class.forName("com.mysql.jdbc.Driver");// Driver driver = (Driver) clazz.newInstance();// DriverManager.registerDriver(driver); /* 获取连接 */ System.out.println(DriverManager.getConnection(url,user,password));
設定檔jdbc.properties如下:
user=root password=123456url=jdbc:mysql://localhost:3306/test?characterEncoding=UTF-8&serverTimezone=Asia/Shanghai Driver=com.mysql.cj.jdbc.Driver
InputStream inputStream = ConnectionTest.class.getClassLoader().getResourceAsStream("jdbc.properties"); Properties info = new Properties(); info.load(inputStream); String user = info.getProperty("user"); String password = info.getProperty("password"); String url = info.getProperty("url"); String driver = info.getProperty("Driver"); /* 加载驱动 */ Class.forName(driver); /* 获取连接 */ Connection conn = DriverManager.getConnection(url,user,password); System.out.println(conn);
以上是java有幾種連接mysql的方式?分別是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!