码迷,mamicode.com
首页 > 数据库 > 详细

JDBC

时间:2015-01-03 23:47:04      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:

1 连接mysql数据库

package lianxi1;

import java.io.IOException;
import java.io.InputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.Properties;

import org.junit.Test;


public class JdbcTest {

@Test    
    public void test1() throws Exception{
        getConnection();
    }
    // 1写入连接数据库的四个字符串
    public Connection getConnection() throws Exception{
        // 2 读取类路径下的jdbc.properites文件
        InputStream is = getClass().getClassLoader().getResourceAsStream("jdbc.properties");
        Properties pro = new Properties();
        pro.load(is);
        String driver = pro.getProperty("driverClass");
        String url = pro.getProperty("url");
        String user = pro.getProperty("user");
        String password = pro.getProperty("password");
        //3 创建连接
        Class.forName(driver);
        return DriverManager.getConnection(url, user,password);
        
    }
}

jdbc.properties文件:

driverClass = com.mysql.jdbc.Driver
url = jdbc\:mysql\://localhost\:3306/test
user = user
password =1234

JDBC

标签:

原文地址:http://www.cnblogs.com/yjtm53/p/4200138.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!