Skip to content

Spark61/Config

Repository files navigation

Config

Code

Usage of Config

//create config
Config config = new Config(/* Path of file */);

//set value
config.set(/* key */, /* value */);

//set value if not exists in config
config.add(/* key */, /* value */);

//save config
config.save();

//reload file content
config.reload();