[文档错误]"JAVA_HOME/lib/security"在"JAVA_HOME/jre"下,但是JDK7的javadoc有误导性
[Doc error]"JAVA_HOME/lib/security" is under "JAVA_HOME/jre", but JDK 7's javadoc is misleading
正如JavaSE 7 java.security JavaDoc建议的那样:
... The Java security properties file is located in the file named <<#JAVA_HOME>>/lib/security/java.security. <<#JAVA_HOME>> refers to the value of the java.home system property, and specifies the directory where the JRE is installed.
(#转义)
起初我很困惑,因为:
如果我们安装了 JDK,JAVA_HOME
应该指向 jdk_folder
并且 /lib/security/java.security
位于 jdk_folder/jre
下。
如果我们只安装了JRE,/lib/security/java.security
会在jre_folder
下找到。
所以,这里的 JavaDoc 是模棱两可的。也许术语 JRE_HOME
更好。如果我按照 JavaDoc 将 JAVA_HOME
更改为 jdk_folder\jre\
,它就会变得一团糟。
因此应在 JavaDoc 中进行一些更改。我可以在哪里提交?
使用 Contact Us 页面查找提交更正的电子邮件地址:
If you find any errors or have any other suggestions for improvement, please mail javasedocs_us@oracle.com and indicate the complete URL of the relevant page.
参考资料
正如JavaSE 7 java.security JavaDoc建议的那样:
... The Java security properties file is located in the file named <<#JAVA_HOME>>/lib/security/java.security. <<#JAVA_HOME>> refers to the value of the java.home system property, and specifies the directory where the JRE is installed.
(#转义)
起初我很困惑,因为:
如果我们安装了 JDK,
JAVA_HOME
应该指向jdk_folder
并且/lib/security/java.security
位于jdk_folder/jre
下。如果我们只安装了JRE,
/lib/security/java.security
会在jre_folder
下找到。
所以,这里的 JavaDoc 是模棱两可的。也许术语 JRE_HOME
更好。如果我按照 JavaDoc 将 JAVA_HOME
更改为 jdk_folder\jre\
,它就会变得一团糟。
因此应在 JavaDoc 中进行一些更改。我可以在哪里提交?
使用 Contact Us 页面查找提交更正的电子邮件地址:
If you find any errors or have any other suggestions for improvement, please mail javasedocs_us@oracle.com and indicate the complete URL of the relevant page.
参考资料