您好,登錄后才能下訂單哦!
安裝mysql
下載 mysql-connector-java-5.1.40-bin.jar驅動包
jdbc.properties
user=root password=1230 driverClass=com.mysql.jdbc.Driver jdbcUrl=jdbc:mysql:///atguigu |
import java.io.IOException; import java.io.InputStream; import java.util.Properties; import java.sql.DriverManager; import java.sql.SQLException;
import com.mysql.jdbc.Connection;
public class JDBCTools {
public JDBCTools() {
}
public static Connection getConnection() throws IOException, SQLException { Connection conn = null; Properties properties = newProperties(); InputStream inStream = JDBCTools.class.getClassLoader() .getResourceAsStream("jdbc.properties"); properties.load(inStream);
String user = properties.getProperty("user"); String password = properties.getProperty("password"); String driverClass = properties.getProperty("driverClass"); String jdbcUrl = properties.getProperty("jdbcUrl");
conn = (Connection) DriverManager.getConnection(jdbcUrl,user,password);
return conn;
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。 |