?? dbconfig.java
字號:
/*
* *****************************************************
* Copyright (c) 2005 IIM Lab. All Rights Reserved.
* Created by xuehao at Dec 5, 2005
* Contact: zxuehao@mail.ustc.edu.cn
* *****************************************************
*/
package org.indigo.util;
/**
* 獲取dbconfig中的屬性類。
* @author wbz
*
*/
public class DBConfig
{
private TaskProperties itsProps=null;
private final static DBConfig itsDBConfig=new DBConfig();
/**
* 構造函數,實例化TaskProperties,并打開./conf/dbconfig文件。
*
*/
private DBConfig()
{
itsProps = new TaskProperties();
itsProps.open( "./conf/dbconfig" );
}
/**
*通過指定的關鍵字獲取屬性值。
* @param key
* @return
*/
public String getProperty( String key )
{
return itsProps.getProperty( key );
}
/**
* 單例模式,返回一個DBConfig的實例。
* @return
*/
public static DBConfig getInstance()
{
return itsDBConfig;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -