午夜国产狂喷潮在线观看|国产AⅤ精品一区二区久久|中文字幕AV中文字幕|国产看片高清在线

    java讀取配置文件properties的方法
    來源:易賢網(wǎng) 閱讀:834 次 日期: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)絡編程
    易賢網(wǎng)手機網(wǎng)站地址:java讀取配置文件properties的方法

    2025國考·省考課程試聽報名

    • 報班類型
    • 姓名
    • 手機號
    • 驗證碼
    關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
    工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
    聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
    咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)