Where are the Java preferences stored in Windows 7?(Java 首选项存储在 Windows 7 中的什么位置?)
问题描述
我们在某些应用程序中使用 Java 首选项,但并没有真正注意到这一点,因为进行调用的实用程序相当陈旧,并且是在 Windows XP 时代编写的.但似乎 Java 首选项不再存储在 Windows 7 的注册表中 - 或者它们存储在不同的地方.
We use the Java preferences in some of our apps and haven't really noticed this since the utility that makes the calls is fairly old and was written in Windows XP days. But it seems the Java preferences are no longer stored in the registry in Windows 7 - or they are stored somewhere different.
我期待它出现在:
HKEY_LOCAL_MACHINESOFTWAREJavaSoftPrefs
但我没有看到它.
让它更奇怪的是,当我运行这个应用程序时:
What makes it wierder, is that when I run this app:
public static void main( final String[] args ) throws BackingStoreException {
Preferences systemRoot = Preferences.systemRoot();
Preferences preferences = systemRoot.node( "com/mycompany/settings" );
systemRoot.put( "foo", "bar" );
systemRoot.put( "baz", "lolz" );
System.out.println( "-------------------------------" );
String[] keys = preferences.keys();
for( String key : keys ) {
System.out.println( key );
}
System.out.println( "-------------------------------" );
keys = systemRoot.keys();
for( String key : keys ) {
System.out.println( key );
}
}
它实际上会写入(我可以注释掉并再次运行它并且它可以工作)但我没有在注册表中看到新键.
It actually writes (I can comment the put out and run it again and it works) but I don't see the new keys in the registry.
另外,我似乎无法在任何地方看到此文档.提前致谢.
Also, I can't seem to see this documented anywhere. Thanks in advance.
EDIT #1 这很重要的唯一原因是设置的变化取决于它运行的环境.话虽如此,通过手动插入注册表项然后进行一些检查来模拟该环境通常很有用.
EDIT #1 The only reason this matters is that the setting changes dependent upon which environment it is ran. This being said, it is often useful to simulate that environment by inserting the registry keys manually and then doing some checking.
我以管理员身份运行,但我没有在注册表中看到我期望的键.
I was running as admin, yet I did not see the keys in the registry where I expected them to be.
推荐答案
它们在当前用户下:HKEY_CURRENT_USERSoftwareJavaSoftPrefs
这篇关于Java 首选项存储在 Windows 7 中的什么位置?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java 首选项存储在 Windows 7 中的什么位置?


- Java包名称中单词分隔符的约定是什么? 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01