java讀取配置文件properties的方法
來源:易賢網(wǎng) 閱讀:1108 次 日期:2014-09-05 17:23:51
溫馨提示:易賢網(wǎng)小編為您整理了“java讀取配置文件properties的方法”,方便廣大網(wǎng)友查閱!

示例:

屬性文件:beans.properties

articleDao=cn.com.leadfar.cms.backend.dao.impl.ArticleDaoImpl

channelDao=cn.com.leadfar.cms.backend.dao.impl.ChannelDaoImpl

使用此屬性時類的配置如下:

PropertiesBeanFactory.java

package cn.com.leadfar.cms.utils;

import java.io.IOException;

import java.util.Properties;

import cn.com.leadfar.cms.backend.dao.ArticleDao;

import cn.com.leadfar.cms.backend.dao.ChannelDao;

public class PropertiesBeanFactory implements BeanFactory {

Properties props = new Properties();

public PropertiesBeanFactory(){

//讀取配置文件,得到具體DAO的實現(xiàn)類名

try {

props.load(Thread.currentThread().getContextClassLoader().getResourceAsStream("beans.properties"));

} catch (IOException e) {

e.printStackTrace();

}

}

public ArticleDao getArticleDao() {

String className = props.getProperty("articleDao");

try {

Class clz = Class.forName(className);

return (ArticleDao)clz.newInstance();

} catch (ClassNotFoundException e) {

e.printStackTrace();

} catch (InstantiationException e) {

e.printStackTrace();

} catch (IllegalAccessException e) {

e.printStackTrace();

}

return null;

}

public ChannelDao getChannelDao() {

String className = props.getProperty("channelDao");

try {

Class clz = Class.forName(className);

return (ChannelDao)clz.newInstance();

} catch (ClassNotFoundException e) {

e.printStackTrace();

} catch (InstantiationException e) {

e.printStackTrace();

} catch (IllegalAccessException e) {

e.printStackTrace();

}

return null;

}

}

更多信息請查看IT技術(shù)專欄

更多信息請查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機網(wǎng)站地址:java讀取配置文件properties的方法
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點

版權(quán)所有:易賢網(wǎng)