Java读取不同类型数据库配置文件连接数据库

一、前言

  • JDK 版本:1.8
  • 开发环境:Eclipse
  • 数据库:SQL Server
  • 外部架包:sqljdbc4.jar、json.jar、commons-io.jar

为了方便理解,示例代码的数据库名称就叫【dbName】

127.0.0.1:1433 为数据库本地服务IP

登录数据库的用户名与密码需要根据自己的数据库登陆名与密码去更改,数据库名称也一样

以下示例可以自行封装成一个方法,也可以封装成方法后放在一个独立的类当中作为独立的数据库操作工具类,以便扩展

工程结构:

Java读取不同类型数据库配置文件连接数据库_第1张图片
工程结构

二、变量

数据库配置直接定义为 变量

2.1 示例代码:

// ConnectTest_1.java

package dbutil;

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

public class ConnectTest_1 {
    public static void main(String[] args) {
        // 连接对象
        Connection connection = null;
        // 数据库驱动名称
        String driverName = "com.microsoft.sqlserver.jdbc.SQLServerDriver";
        // 数据库URL
        String url = "jdbc:sqlserver://127.0.0.1:1433;" + "DatabaseName=" + "dbName";
        // 登录数据库的用户名
        String userName = "root";
        // 登陆数据库的密码
        String password = "root";
        try {
            // 加载 SQL Server 驱动程序,得到 Connection 对象
            Class.forName(driverName);
            // 建立数据库连接
            connection = DriverManager.getConnection(url, userName, password);
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (SQLException e) {
            e.printStackTrace();
        }
        // 提示语
        System.out.println("Connect successfully ! ");
        try {
            // 关闭数据库连接
            connection.close();
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
}

三、properties 类型文件

3.1 前期准备:

数据库配置放在 properties 文件,文件名为 XXXX.properties,这里作为示例,文件名称为 dbConfig.properties

引入架包:sqljdbc4.jar

3.2 dbConfig.properties 文件

driver=com.microsoft.sqlserver.jdbc.SQLServerDriver
url=jdbc:sqlserver://127.0.0.1:1433;DatabaseName=dbName
user=root
pwd=root

3.3 示例代码:

// ConnectTest_2.java

package dbutil;

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

public class ConnectTest_2 {
    public static void main(String[] args) {
        Properties properties = null;
        Connection connection = null;
        String driverName = null;
        String url = null;
        String userName = null;
        String password = null;
        properties = new Properties();
        try {
            // 加载配置文件
            properties.load(new FileInputStream("src/dbutil/dbConfig.properties"));
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        // 获取对应的数据库配置属性
        driverName = properties.get("driver").toString();
        url = properties.get("url").toString();
        userName = properties.get("user").toString();
        password = properties.get("pwd").toString();
        try {
            // 加载 SQL Server 驱动程序,得到 Connection 对象
            Class.forName(driverName);
            // 建立数据库连接
            connection = DriverManager.getConnection(url, userName, password);
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (SQLException e) {
            e.printStackTrace();
        }
        // 提示语
        try {
            // 关闭数据库连接
            connection.close();
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
}

四、xml 类型文件

4.1 前期准备

数据库配置放在 XML 文件,文件名为 XXXX.xml,这里作为示例,文件名称为 dbConfig.xml

引入架包:sqljdbc4.jar

4.2 dbConfig.xml 文件



    com.microsoft.sqlserver.jdbc.SQLServerDriver
    dbName
    jdbc:sqlserver://127.0.0.1:1433;DatabaseName=
    root
    root

4.3 示例代码:

// ConnectTest_3.java

package dbutil;

import java.io.File;
import java.io.IOException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.HashMap;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;

import org.w3c.dom.DOMException;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.SAXException;

public class ConnectTest_3 {
    /**
     * @description 读取数据库配置属性
     * @return
     */
    public static HashMap getSQLConfig() {
        HashMap sqlConfig = new HashMap();
        NodeList nl = null;
        Node classNode = null;
        try {
            // 创建文档对象
            DocumentBuilderFactory dFactory = DocumentBuilderFactory.newInstance();
            DocumentBuilder builder = dFactory.newDocumentBuilder();
            Document doc;
            doc = builder.parse(new File("src/dbutil/dbConfig.xml"));
            /**
             * 获取包含数据库配置的文本结点
             */
            // 数据库驱动
            nl = doc.getElementsByTagName("driver");
            classNode = nl.item(0).getFirstChild();
            sqlConfig.put("driver", classNode.getNodeValue().trim());
            // 数据库名
            nl = doc.getElementsByTagName("dbName");
            classNode = nl.item(0).getFirstChild();
            sqlConfig.put("dbName", classNode.getNodeValue().trim());
            // 本地URL
            nl = doc.getElementsByTagName("url");
            classNode = nl.item(0).getFirstChild();
            sqlConfig.put("url", classNode.getNodeValue().trim());
            // 数据库登录名
            nl = doc.getElementsByTagName("user");
            classNode = nl.item(0).getFirstChild();
            sqlConfig.put("user", classNode.getNodeValue().trim());
            // 数据库登录密码
            nl = doc.getElementsByTagName("pwd");
            classNode = nl.item(0).getFirstChild();
            sqlConfig.put("pwd", classNode.getNodeValue().trim());

            return sqlConfig;
        } catch (DOMException e) {
            e.printStackTrace();
            return null;
        } catch (ParserConfigurationException e) {
            e.printStackTrace();
            return null;
        } catch (SAXException e) {
            e.printStackTrace();
            return null;
        } catch (IOException e) {
            e.printStackTrace();
            return null;
        }
    }
    
    public static void main(String[] args) {
        Connection connection = null;
        HashMap config = new HashMap();
        // 获取对应的数据库配置属性
        config = getSQLConfig();
        try {
            // 加载 SQL Server 驱动程序,得到 Connection 对象
            Class.forName(config.get("driver"));
            // 建立数据库连接
            connection = DriverManager.getConnection(config.get("url") + config.get("dbName"), config.get("user"), config.get("pwd"));
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (SQLException e) {
            e.printStackTrace();
        }
        // 提示语
        System.out.println("Connect successfully ! ");
        try {
            // 关闭数据库连接
            connection.close();
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
}

五、json 类型文件

5.1 前期准备

数据库配置文件放在 json 文件,文件名为 XXXX.json,这里作为示例,文件名称为 dbConfig.json

引入架包:sqljdbc4.jar、json.jar、commons-io.jar

4.2 dbConfig.json 文件

{
  "driver": "com.microsoft.sqlserver.jdbc.SQLServerDriver",
  "url": "jdbc:sqlserver://127.0.0.1:1433;DatabaseName=",
  "dbName": "dbName",
  "user": "root",
  "pwd": "root"
}

5.3 示例代码:

package dbutil;

import java.io.File;
import java.io.IOException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.HashMap;

import org.apache.commons.io.FileUtils;
import org.json.JSONException;
import org.json.JSONObject;

public class ConnectTest_4 {
    /**
     * @description 读取数据库配置属性
     * @return
     */
    public static HashMap getSQLConfig() {
        try {
            String s = FileUtils.readFileToString(new File("src/dbutil/dbConfig.json"), "UTF-8");
            JSONObject jsonObject = new JSONObject(s);
            HashMap config = new HashMap();
            config.put("driver", jsonObject.getString("driver"));
            config.put("url", jsonObject.getString("url"));
            config.put("dbName", jsonObject.getString("dbName"));
            config.put("user", jsonObject.getString("user"));
            config.put("pwd", jsonObject.getString("pwd"));
            return config;
        } catch (JSONException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return null;
    }

    public static void main(String[] args) {
        Connection connection = null;
        HashMap config = new HashMap();
        // 获取对应的数据库配置属性
        config = getSQLConfig();
        try {
            // 加载 SQL Server 驱动程序,得到 Connection 对象
            Class.forName(config.get("driver"));
            // 建立数据库连接
            connection = DriverManager.getConnection(config.get("url") + config.get("dbName"), config.get("user"),
                    config.get("pwd"));
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (SQLException e) {
            e.printStackTrace();
        }
        // 提示语
        System.out.println("Connect successfully ! ");
        try {
            // 关闭数据库连接
            connection.close();
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
}

你可能感兴趣的:(Java读取不同类型数据库配置文件连接数据库)