Java: java.util.Preferences Failing
我的程序将加密的产品密钥数据保存到具有类(系统首选项,而不是用户)的计算机中。问题是,在Windows和Linux上(尚未在OSX上进行测试,但可能是相同的),如果我没有使用管理员权限或管理员权限运行程序,则每当尝试读取或保存数据时,它都会发出异常或警告。java.util.Preferences
sudo
显然,要求用户以管理员权限运行程序是不切实际的。理想情况下,我希望操作系统向用户请求权限。
这是非常愚蠢的,并且删除了一半的目的。如何解决这个问题?Preferences
以下是我需要的摘要:我需要我的程序向操作系统请求保存系统设置的权限。
这是错误信息
这是我尝试读取节点时的错误(因为该节点不存在):
Mar 18, 2011 9:41:15 AM java.util.prefs.WindowsPreferences <init>
WARNING: Could not create windows registry node Software\JavaSoft\Prefs\myapp at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5.
Mar 18, 2011 9:41:15 AM java.util.prefs.WindowsPreferences WindowsRegOpenKey1
WARNING: Trying to recreate Windows registry node Software\JavaSoft\Prefs\myapp at root 0x80000002.
Mar 18, 2011 9:41:15 AM java.util.prefs.WindowsPreferences openKey
WARNING: Could not open windows registry node Software\JavaSoft\Prefs\myapp at root 0x80000002. Windows RegOpenKey(...) returned error code 2.
Mar 18, 2011 9:41:15 AM java.util.prefs.WindowsPreferences WindowsRegOpenKey1
WARNING: Trying to recreate Windows registry node Software\JavaSoft\Prefs\myapp\subpackage at root 0x80000002.
Mar 18, 2011 9:41:15 AM java.util.prefs.WindowsPreferences openKey
WARNING: Could not open windows registry node Software\JavaSoft\Prefs\myapp\subpackage at root 0x80000002. Windows RegOpenKey(...) returned error code 2.
这就是我尝试写入节点时发生的情况:
Mar 18, 2011 9:43:11 AM java.util.prefs.WindowsPreferences WindowsRegOpenKey1
WARNING: Trying to recreate Windows registry node Software\JavaSoft\Prefs\myapp\subpackage at root 0x80000002.
Mar 18, 2011 9:43:11 AM java.util.prefs.WindowsPreferences openKey
WARNING: Could not open windows registry node Software\JavaSoft\Prefs\myapp\subpackage at root 0x80000002. Windows RegOpenKey(...) returned error code 2.