JAVA学习:JDBC连接DB2数据库(2):使用配置文件

本文介绍了如何使用JAVA的Properties类从配置文件读取连接信息,以此连接DB2数据库。Configration类加载配置文件,DBManager类负责数据库的连接、创建表、插入数据和查询操作。通过这种方式,简化了数据库连接过程。
摘要由CSDN通过智能技术生成
JAVA读取配置文件可以使用Properties类,非常方便。
我把上一篇的代码做了修改,下面的
Configration  类是用来读取配置文件连接数据库。
Configration.java:
package  src.dbtest;

import  java.io.FileInputStream;
import  java.util.Properties;

public   class  Configration  {

    
private Properties properties ;
    
private FileInputStream fileInputStream ;
//    private FileOutputStream fileOutputStream ;
    
    
private String value;

    
/**
     * 
@param 
     
*/
    
    
public Configration() {
        properties 
= new Properties();
    }

    
    
/**
     * 
@param filePath : Path+Name of config file 
     
*/

    
public Configration(String filePath) {
        
this();
        
try {
            fileInputStream 
= new FileInputStream(filePath);
            properties.load(fileInputStream);
            fileInputStream.close();
        }
 catch (Exception e) {
            System.out.println(
"Read file failed! Please check the filepath.");
            e.printStackTrace();
        }

    }


    
/**
     * 
@param String key
     * 
@return String value
     
*/

    
public String getValue(String key) {
        
if (properties.containsKey(key)) {
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值