import java.util.prefs.Preferences;
public class Main {
public static void main(String[] argv) throws Exception {
Preferences prefs = Preferences.userNodeForPackage(Main.class);
final String PREF_NAME = "your_preference";
String newValue = "a string";
prefs.put(PREF_NAME, newValue);
String defaultValue = "default string";
String propertyValue = prefs.get(PREF_NAME, defaultValue); // "a string"
}
}
|