最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Java实现的properties文件动态修改并自动保存工具类
时间:2022-06-29 01:05:25 编辑:袖梨 来源:一聚教程网
本文实例讲述了Java实现的properties文件动态修改并自动保存工具类。分享给大家供大家参考,具体如下:
一、概述
利用commons-configuration读取配置文件,并实现对配置文件的动态修改和自动保存。
Apache Common-Configuration工具可以从
Properties文件,XML文件,JNDI,JDBC数据源,System Properties,Applet parameters,Servlet Parameters等读取相应信息
使用步骤
前提,引入commons-configuration-1.6.jar这个JAR包,同时还必须映入commm-logging.jar,common-lang.jar和common-collection.jar
二、示例:
public class Config { private static PropertiesConfiguration propConfig; private static final Config CONFIG = new Config(); /** * 自动保存 */ private static boolean autoSave = true; private Config() { } public static Config getInstance(String propertiesFile) { //执行初始化 init(propertiesFile); return CONFIG; } /** * 初始化 * * @param propertiesFile * @see */ private static void init(String propertiesFile) { try { propConfig = new PropertiesConfiguration(propertiesFile); //自动重新加载 propConfig.setReloadingStrategy(new FileChangedReloadingStrategy()); //自动保存 propConfig.setAutoSave(autoSave); } catch (ConfigurationException e) { e.printStackTrace(); } } /** * 根据Key获得对应的value * * @param key * @return * @see */ public Object getValue(String key) { return propConfig.getProperty(key); } /** * 设置属性 * * @param key * @param value * @see */ public void setProperty(String key, String value) { propConfig.setProperty(key, value); } }
附:相关jar包本站下载地址如下:
相关文章
- 2024金摇杆奖年度游戏名单 11-22
- 用针在纸上绣画是哪种非遗技艺 蚂蚁新村11月21日答案最新 11-22
- 重返未来1999纸信圈儿什么时候up 为什么故事集卡池活动介绍 11-22
- 重返未来1999雾中盛会怎么玩 UTTU聚光专栏雾中盛会活动介绍 11-22
- 光遇姆明季后续版本怎么玩 光遇音乐节宴会节活动介绍 11-22
- 无期迷途四星装束是谁 无期迷途首个四星装束剪影介绍 11-22