Windows/NetBeans 平台 - 将 JAVA_HOME 环境变量添加到 conf 文件中
我正在尝试使用 JAVA_HOME Windows 环境变量作为 netbeans 平台应用程序中的 jdkhome 目录。该变量肯定已设置(它最初是一个用户变量,但我还添加了一个环境变量,因为我认为这可能是问题所在)。我的配置文件当前包含行
jdkhome="${JAVA_HOME}"
我
尝试了jdkhome=${JAVA_HOME}
也 。这些都不起作用 - 它说没有有效的 java 安装。如果我手动写出 JAVA_HOME 指向的目录,它确实有效。
我尝试在netbeans官方论坛上询问,但没有任何回复。
有什么建议吗?
I'm trying to use the JAVA_HOME windows environment variable as the jdkhome directory in a netbeans platform application. The variable is definitely set (it was originally a user variable, but I added an environment variable as well because I thought that might be the issue). My config file currently contains the line
jdkhome="${JAVA_HOME}"
I tried
jdkhome=${JAVA_HOME}
as well. Neither of these work - it says there is no valid java install. It does work if I manually write out the directory that JAVA_HOME points to.
I've tried asking on the official netbeans forum, but there hasn't been any response.
Any advice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
%JAVA_HOME%
看看是否有效。Try
%JAVA_HOME%
and see if that works.