CORE
HOME > JAVA > J2SE > CORE
2016.11.03 / 10:09

javaÀÇ properties ¸¦ ´ëÄ¡ÇÏ´Â PropertiesConfigurationcommons configuration

±â¸®¾Æºü
Ãßõ ¼ö 494
uration("usergui.properties");
config.setProperty("colors.background", "#000000);
config.save();

You can also save a copy of the configuration to another file:

PropertiesConfiguration config = new PropertiesConfiguration("usergui.properties");
config.setProperty("colors.background", "#000000);
config.save("usergui.backup.properties);

 

 

Ref