Java 利用commons-configuration.jar 動態修改設定檔(.properties)

來源:互聯網
上載者:User
import java.util.Map;import org.apache.commons.configuration.ConfigurationException;import org.apache.commons.configuration.PropertiesConfiguration;import org.apache.commons.configuration.reloading.FileChangedReloadingStrategy;import org.apache.log4j.Logger;/** *  * 設定檔properties自動載入類 * @author lyh * @version 2012-6-5 * @see PropertiesAutoLoad * @since */public class PropertiesAutoLoad{    /**     * 日誌     */    private static final Logger log = Logger.getLogger(PropertiesAutoLoad.class);    /**     * Singleton     */    private static final PropertiesAutoLoad AUTO_LOAD = new PropertiesAutoLoad();    /**     * Configuration     */    private static PropertiesConfiguration propConfig;    /**     * 自動儲存     */    private static boolean autoSave = true;    /**     * properties檔案路徑     * @param propertiesFile     * @return      * @see     */    public static PropertiesAutoLoad getInstance(String propertiesFile)    {        //執行初始化        init(propertiesFile);        return AUTO_LOAD;    }    /**     * 根據Key獲得對應的value     * @param key     * @return      * @see     */    public Object getValueFromPropFile(String key)    {        return propConfig.getProperty(key);    }    /**     * 獲得對應的value數組     * @param key     * @return      * @see     */    public String[] getArrayFromPropFile(String key)    {        return propConfig.getStringArray(key);    }    /**     * 設定屬性     * @param key     * @param value      * @see     */    public void setProperty(String key, String value)    {        propConfig.setProperty(key, value);    }    /**     * 設定屬性     * @param map      * @see     */    public void setProperty(Map<String, String> map)    {        for (String key : map.keySet())        {            propConfig.setProperty(key, map.get(key));        }    }    /**     * 構造器私人化     */    private PropertiesAutoLoad()    {    }    /**     * 初始化     * @param propertiesFile      * @see     */    private static void init(String propertiesFile)    {        try        {            propConfig = new PropertiesConfiguration(propertiesFile);            //自動重新載入            propConfig.setReloadingStrategy(new FileChangedReloadingStrategy());            //自動儲存            propConfig.setAutoSave(autoSave);        }        catch (ConfigurationException e)        {            log.error(e.getMessage());        }    }    /**     * Test     * @param args      * @see     */    public static void main(String[] args)    {        log.info(PropertiesAutoLoad.getInstance("props/config/XX.properties").getValueFromPropFile(            "pageSize"));    }}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.