java从操作配置文件中连接数据库的简单写法

从操作配置文件Properties中读取连接字符串,通过该字符串进行数据连接,需要写三个文件其中,两个是java类,一个是后缀名为.properties的文件,该文件放在src工作目录下。

后缀为.properties的文件此处为其取名为dbconfig.properties,其中的代码如下:

URL=jdbc:mysql://localhost:3306/test
 USER=root
 PWD=root

此连接方式是sqlservcer数据库的连接方式,sqlservcer数据库中存在一个叫newsdb的数据库。

一个Java类是专门用来操作该操作配置文件的类,此处取名为:PropertiesUtils.java;其类中的代码为:

import java.io.IOException; 
import java.io.InputStream; 
import java.util.Properties; 
public class PropertiesUtils { 
//产生一个操作配置文件的对象 
static Properties prop = new Properties(); 
/** * 
* @param fileName 需要加载的properties文件,文件需要放在src根目录下 
* @return 是否加载成功 
*/ 
public static boolean loadFile(String fileName){ 
  try { 
prop.load(PropertiesUtils.class.getClassLoader().getResourceAsStream(fileName));
} catch (IOException e) { 
e.printStackTrace(); 
return false; 
} 
return true;
} 
/** 
* 根据KEY取回相应的value 
* @param key 
* @return 
*/
public static String getPropertyValue(String key){ 
return prop.getProperty(key); 
} 
}

该类提供两个方法,一个是用来加载操作配置文件,一个方法是根据键key读取该文件中的值。

另一个java类是数据库连接类,取名为ConnectionUtils.java;其代码如下:

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;

import com.accp.news.utils.PropertiesUtils;

public class ConnectionUtils {
private static String URL = null;
private static String USER = null;
private static String PWD = null;

static {
PropertiesUtils.loadFile("dbconfig.properties");
URL = PropertiesUtils.getPropertyValue("URL");
USER = PropertiesUtils.getPropertyValue("USER");
PWD = PropertiesUtils.getPropertyValue("PWD");

try {
Class.forName("net.sourceforge.jtds.jdbc.Driver");
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}

/**
* 取得连接的工具方法
* @return
*/
public static Connection getConnection() {
try {
Connection conn = DriverManager.getConnection(URL, USER, PWD);
return conn;
} catch (SQLException e) {
e.printStackTrace();
}
return null;
}

}
此数据连接类,有一个静态块,该静态块执行配置文件的读取和驱动的加载;该类还提供了一个取得数据库连接的方法。

出处:http://gongyanghui1986.blog.163.com/blog/static/1374853192010925105210958/




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值