Java 用jdbc连接数据库

准备

安装mysql

下载 mysql-connector-java-5.1.40-bin.jar驱动包

步骤

  1. 创建jdbc项目

  2. 导入mysql-connector-java-5.1.40-bin.ja包

  3. 创建配置文件

jdbc.properties

user=root

password=1230

driverClass=com.mysql.jdbc.Driver

jdbcUrl=jdbc:mysql:///atguigu

  1. 代码

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;

0

收藏

7篇文章,6317人气,0粉丝

Ctrl+Enter 发布

发布

取消

推荐专栏

MySQL全通晓

共18章 | 

¥51.00 402人订阅

高并发架构之路

共15章 | 

¥51.00 508人订阅

猜你喜欢

f92360e227f9d91cdff7ea95120630ef.png
left-qr.jpg

扫一扫,领取大礼包

0

分享