Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using system prefrences for testing my code i observed some peculiar things on java 1.5

private void loadEmptyPreferences() throws IOException,
            InvalidPreferencesFormatException, BackingStoreException {
        ClassLoader contextClassLoader = Thread.currentThread()
                .getContextClassLoader();
        InputStream stream = contextClassLoader
                .getResourceAsStream("example.xml");
        if (stream == null) {
            fail("Could not load preferences file");
        }
        Preferences pref = Preferences.systemRoot().node("test");
        pref.removeNode();
        Preferences.importPreferences(stream);
    }

I get

java.lang.SecurityException: Could not lock System prefs.Lock file access denied. at java.util.prefs.FileSystemPreferences.checkLockFile0ErrorCode(FileSystemPreferences.java:919) at java.util.prefs.FileSystemPreferences.lockFile(FileSystemPreferences.java:908) at java.util.prefs.FileSystemPreferences.removeNode(FileSystemPreferences.java:656)

The reason is that the preferences-systems tries to write a lock file at a location where "normal" users have no write permissions on Linux (/opt/j2se/linux/ix86/j2se_1.5.0_22/jre/.systemPrefs/.system.lock)

How to solve this?Should we use properties?

share|improve this question

1 Answer

Preferences.systemRoot() returns the system-wide (i.e. root only) preferences. They can't be changed by non-privileged users.

If you need to change settings for normal users, try using userRoot() instead.

share|improve this answer
I have the same problem on an Ubuntu virtual box, without using Preferences.systemRoot() in my application. This seems to come from JVM API instead. – LD. Apr 1 at 16:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.