可以用來讀取多種格式的設定檔. 目前可讀取的來源有:
// 讀取 usergui.properties, 並且新增(修改)四個設定值.
PropertiesConfiguration config = new PropertiesConfiguration("usergui.properties");
config.setProperty("colors.background", "#ffffff");
config.setProperty("colors.foreground", "#000080");
config.setProperty("window.width", 500);
config.setProperty("window.height", 300);
config.save();