Environment variables for java installation(java安装环境变量)
问题描述
How to set the environment variables for Java in Windows (the classpath)?
Java SE Development Kit 8u112 on a 64-bit Windows 7 or Windows 8
Set the following user environment variables (== environment variables of type user variables)
JAVA_HOME :C:Program FilesJavajdk1.8.0_112JDK_HOME :%JAVA_HOME%JRE_HOME :%JAVA_HOME%jreCLASSPATH :.;%JAVA_HOME%lib;%JAVA_HOME%jrelibPATH :your-unique-entries;%JAVA_HOME%in(make sure that the longishyour-unique-entriesdoes not contain any other references to another Java installation folder.
Note for Windows users on 64-bit systems:
Progra~1 = 'Program Files'
Progra~2 = 'Program Files(x86)'
Notice that these environment variables are derived from the "root" environment variable JAVA_HOME. This makes it easy to update your environment variables when updating the JDK. Just point JAVA_HOME to the fresh installation.
There is a blogpost explaining the rationale behind all these environment variables.
Optional recommendations
- Add an user environment variable
JAVA_TOOL_OPTIONSwith value-Dfile.encoding="UTF-8". This ensures that Java (and tools such as Maven) will run with aCharset.defaultCharset()ofUTF-8(instead of the defaultWindows-1252). This has saved a lot of headaches when wirking with my own code and that of others, which unfortunately often assume the (sane) default encoding UTF-8. - When JDK is installed, it adds to the system environment variable
Pathan entryC:ProgramDataOracleJavajavapath;. I anecdotally noticed that the links in that directory didn't get updated during an JDK installation update. So it's best to removeC:ProgramDataOracleJavajavapath;from thePathsystem environment variable in order to have a consistent environment.
这篇关于java安装环境变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:java安装环境变量
基础教程推荐
- 将 double 转换为 Int,向下舍入 2022-01-01
- 将 Windows 证书导入 Java 2022-01-01
- doFilter()是在servlet的工作完成之前还是之后执行的? 2022-01-01
- 控制台应用程序中的 Java 键盘输入解析 2022-01-01
- Java ECDSAwithSHA256 签名长度不一致 2022-01-01
- Maven:无效的目标版本:10 2022-01-01
- 在springboot中如何给mybatis加拦截器 2023-04-29
- 在java中使用xpath和selenium解析HTML表格数据 2022-01-01
- 如何在相机中应用自定义滤镜 [Surfaceview 预览]. 2022-01-01
- JPA惰性列表上的流 2022-01-01
