|
From: Brendan M. <mcm...@ux...> - 2003-07-08 18:23:00
|
=46rom FileSystemPreferences.java I see:
static {
// Temp fix until installation script issues get resolved
String systemPrefsDirName =3D (String)
AccessController.doPrivileged( new PrivilegedAction() {
public Object run() {
return System.getProperty
("java.util.prefs.systemRoot","/etc/.java");
}
});
=20
systemRootDir =3D=20
new File(systemPrefsDirName, ".systemPrefs");
}
so it looks like the system preferences now live by defaul in /etc/.java ..=
=2E=20
which of course I don't have write access to as a normal user. One option=
=20
would be to set the sytemRoot proprety to a different default.
Brent, can you see if this code is in the JDK you are using, and if it is, =
can=20
you see if your "java.util.prefs.systemRoot" property is set? Thanks.
- Brendan
|