1.win10怎么配置java环境变量path
1.首先要配置系统变量JAVA_HOME,如图
变量名固定为JAVA_HOME,不要变,照写即可,具体设置如图:
变量值是jdk所在位置,你去找一下,每个人的都可能不同。一般默认在C盘(?)
我的是C:\Program Files (x86)\Java\jdk1.6.0_39
注意路径里包含的关键字眼"\Java\jdk1.6.0_39",
”\Java\“后紧跟你安装的jdk的版本,有时会找错。
2.接着是Path变量。先在系统变量(S)的面板里,
拖动滚动条找一下是否有Path变量,一般都有的
2.Java如何设置ClassPath路径?
因为有很多汉字需要编码所以选择gbk ============================================================================ URIEncoding="GBK" /etc/profile ============================================================================= export PATH export JAVA_HOME=/usr/lib/jvm/java-6-sun export CLASSPATH=。
:$JAVA_HOME/lib/dt。jar:$JAVA_HOME/lib/tools。
jar:$JAVA_HOME/lib/mysql-connector-java-5。1。
12-bin。jar umask 022 export APACHE_RUN_USER= sites-enabled ================================================================================= ServerName ServerAlias *。***。
com ***。com ServerAdmin webmaster@localhost DocumentRoot /opt/sites/***。
com Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ AllowOverride None Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all ErrorLog /var/log/apache2/***。 access。
error。log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg。
LogLevel warn CustomLog /var/log/apache2/***。 access。
log combined Alias /doc/ "/usr/share/doc/" Options Indexes MultiViews FollowSymLinks AllowOverride None Order deny,allow Deny from all Allow from 127。 0。
0。0/255。
0。0。
0 ::1/128 # Alias /examples "/usr/share/tomcat6-examples/examples/" # # Options Indexes MultiViews FollowSymLinks # AllowOverride None # Order deny,allow # Allow from all # # #禁止访问WEB-INF文件夹 # # Order allow,deny # JkMount /*。 jsp ajp13_worker JkMount /*。
jspx ajp13_worker JkMount /*/servlet/* ajp13_worker JKMount /*。do ajp13_worker ================================================================================= # Sample mod_jk configuration # for Apache 2 # # for all commands/options available see the manual # provided in libapache-mod-jk-doc package。
# The location where mod_jk will find the workers definitions JkWorkersFile /etc/libapache2-mod-jk/workers。properties # The location where mod_jk is going to place its log file JkLogFile /var/log/apache2/mod_jk。
log # The log level: # - info log will contain standard mod_jk activity (default)。 # - warn log will contain non fatal error reports。
# - error log will contain also error reports。 # - debug log will contain all information on mod_jk activity # - trace log will contain all tracing information on mod_jk activity JkLogLevel info # Assign specific URLs to Tomcat。
In general the structure of a # JkMount directive is: JkMount [URL prefix] [Worker name] # send all requests ending in 。 jsp to ajp13_worker JkMount /*。
jsp ajp13_worker # send all requests ending /servlet to ajp13_worker JkMount /*/servlet/ ajp13_worker # JkUnmount directive acts as an opposite to JkMount and blocks access # to a particular URL。 The purpose is to be able to filter out the # particular content types from mounted context。
# do not send requests ending with 。 gif to ajp13_worker #JkUnMount /servlet/*。
gif ajp13_worker # JkMount / JkUnMount directives can also be used inside # sections of your 根据你的系统选择你需要下载的jdk,32位系统对应x86,64位系统对应x64下载完后得到一个可执行文件,点击运行进入安装二、安装1.安装JDK选择你要安装到的路径,注意这个路径不能包含中文名这里我们可以通过“更改”选择自己想要安装到的目录,然后点击下一步即可。
到这里我们只安装了jdk,安装向导会检查到你未安装jre,然后提示你安装jre2.安装JRE选择一个你喜欢的文件夹,注意这个文件夹不要是jdk安装目录,否则会覆盖掉jdk目录下的jre目录我们这里选择安装到和JDK同级的目录下,点击下一步之后即可完成安装,然后提示已成功安装3.附上我安装的文件夹三、环境变量配置我的电脑→右键→属性→高级系统设置→环境变量1.新建一个变量名为“JAVA_HOME”的系统变量,变量值为“E:\Development\Java\jdk1.8.0_92”(jdk的安装目录,根据个人所安装的目录修改)2.再新建一个变量名为“CLASSPATH”,变量值为“.;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\lib\tools.jar;”的系统变量,注意前面的点号和分号都是有的3.打开“Path”系统变量,点击新建,添加“%JAVA_HOME%\bin”和“%JAVA_HOME%\jre\bin”两个系统变量。Path使得系统可以在任何路径下识别java命令(win7下Path打开后可能不是这样的页面,打开后需要手动输入这两个变量名,每个变量名都用英文分号隔开即可)四、认证点击保存后,按window+R或者点击运行输入cmd,打开命令行窗口分别输入java和java -version和javac都正常运行即代表java已经正确安装,其中 java -version代表你安装的java的版本如果出现类似"javac不是内部或外部命令"等提示语句,请再三检查你的环境变量是否正确配置,或者JDK和JRE安装目录是否重复,如果重复,可以选择再次运行下载的jdk安装程序重新安装。
6.win10怎么配置java环境变量path
1.首先要配置系统变量JAVA_HOME,如图变量名固定为JAVA_HOME,不要变,照写即可,具体设置如图:变量值是jdk所在位置,你去找一下,每个人的都可能不同。
一般默认在C盘(?)我的是C:\Program Files (x86)\Java\jdk1.6.0_39注意路径里包含的关键字眼"\Java\jdk1.6.0_39",”\Java\“后紧跟你安装的jdk的版本,有时会找错。2.接着是Path变量。
先在系统变量(S)的面板里,拖动滚动条找一下是否有Path变量,一般都有的。
转载请注明出处windows之家 » 设置java路径win10