从操作配置文件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/