Java user.home 被设置为 %userprofile% 并且未被解析

2022-09-01 06:40:19

我们公司最近从Windows XP升级到Windows 7 Enterprise。JDK 安装不再将 user.home 设置为用户目录的完整路径,而是将 user.home 设置为 。这导致了 Eclipse、Maven 等应用程序出现很多问题。我现在必须在JVM中为每个应用程序设置-Duser.home。还有其他人经历过这种情况吗?有没有解决这个问题的方法?这是否与Windows 7 Enterprise的安装有关?我尝试过1.5 JDK和1.6 JDK。%userprofile%

下面是属性列表。注意 user.home:

-- listing properties --
java.runtime.name=Java(TM) SE Runtime Environment
sun.boot.library.path=C:\Program Files\Java\jre6\bin
java.vm.version=16.0-b13
java.vm.vendor=Sun Microsystems Inc.
java.vendor.url=http://java.sun.com/
path.separator=;
java.vm.name=Java HotSpot(TM) Client VM
file.encoding.pkg=sun.io
user.country=US
sun.java.launcher=SUN_STANDARD
sun.os.patch.level=
java.vm.specification.name=Java Virtual Machine Specification
user.dir=C:\Users\politesp\Desktop
java.runtime.version=1.6.0_18-b07
java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
java.endorsed.dirs=C:\Program Files\Java\jre6\lib\endorsed
os.arch=x86
java.io.tmpdir=C:\Users\politesp\AppData\Local\Temp\
line.separator=

java.vm.specification.vendor=Sun Microsystems Inc.
user.variant=
os.name=Windows 7
sun.jnu.encoding=Cp1252
java.library.path=C:\WINDOWS\system32;.;C:\WINDOWS\Sun\...
java.specification.name=Java Platform API Specification
java.class.version=50.0
sun.management.compiler=HotSpot Client Compiler
os.version=6.1
user.home=%userprofile%
user.timezone=
java.awt.printerjob=sun.awt.windows.WPrinterJob
file.encoding=Cp1252
java.specification.version=1.6
user.name=politesp
java.class.path=.
java.vm.specification.version=1.0
sun.arch.data.model=32
java.home=C:\Program Files\Java\jre6
java.specification.vendor=Sun Microsystems Inc.
user.language=en
awt.toolkit=sun.awt.windows.WToolkit
java.vm.info=mixed mode, sharing
java.version=1.6.0_18
java.ext.dirs=C:\Program Files\Java\jre6\lib\ext;C:...
sun.boot.class.path=C:\Program Files\Java\jre6\lib\resour...
java.vendor=Sun Microsystems Inc.
file.separator=\
java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport...
sun.cpu.endian=little
sun.io.unicode.encoding=UnicodeLittle
sun.desktop=windows
sun.cpu.isalist=pentium_pro+mmx pentium_pro pentium+m...

更新:

使用我发现的Andreas_D错误的链接:

的值是 %userprofile%\Desktop 在我的 Windows 7 Enterprise 安装上。HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Desktop

当我将此项的值更改为 时,我的 user.home 会正确解析。任何想法为什么会发生这种情况?C:\Users\politesp\Desktop


答案 1

大多数注册表项位于:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders

以 开头。我更新了以 开头的所有注册表项。我在Windows XP上验证了这些路径实际上是硬编码的,并且没有使用。IT人员提到,由于Windows 7中使用了默认配置文件,因此默认使用注册表项。JVM 期望对桌面路径进行硬编码。它不会评估环境变量。%userprofile%%userprofile%C:\Users\myusername%userprofile%%userprofile%

您可以逐个更新注册表项,也可以导出文件夹并更改注册表项。以下是导出和导入注册表项的方法:

  1. 转到“开始>运行”。
  2. 类型。这将打开注册表编辑器。regedit
  3. 浏览到 。HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
  4. 右键单击并选择“导出”。Shell Folders
  5. 选择桌面作为目标,输入文件名并保存文件。Shell Folders
  6. 在文本编辑器中打开该文件并替换为 。保存并关闭该文件。%userprofile%C:\\Users\\yourusername
  7. 返回到注册表编辑器窗口,然后从主菜单中选择文件>导入”。
  8. 选择并单击“打开”。Shell Folders.reg
  9. 关闭注册表编辑器,然后从桌面上删除该文件。Shell Folders.reg

答案 2

这是由于Java中一个长期悬而未决的错误:http://bugs.sun.com/view_bug.do?bug_id=4787931


推荐