import java.util.prefs.Preferences;
...
private Preferences userPrefs = Preferences.userNodeForPackage( MyClass.class );
Preferences userPrefs = Preferences.userRoot().node( "/com/mindprod/replicator/MyClass" );
private Preferences fruits = Preferences.userNodeForPackage( MyClass.class ).node( "fruits" );
...
userPrefs.putInt( "width", width );
userPrefs.putInt( "height", height );
userPrefs.flush();
...
int width = userPrefs.getInt( "width", 100 );
int height = userPrefs.getInt( "height", 200 );