惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

宝玉的分享
宝玉的分享
NISL@THU
NISL@THU
E
Exploit-DB.com RSS Feed
L
LINUX DO - 热门话题
L
Lohrmann on Cybersecurity
K
Kaspersky official blog
Project Zero
Project Zero
Cisco Talos Blog
Cisco Talos Blog
T
The Exploit Database - CXSecurity.com
P
Palo Alto Networks Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
T
Threatpost
S
Schneier on Security
G
GRAHAM CLULEY
The Hacker News
The Hacker News
T
Threat Research - Cisco Blogs
Scott Helme
Scott Helme
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
P
Privacy & Cybersecurity Law Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
Cyberwarzone
Cyberwarzone
C
CERT Recently Published Vulnerability Notes
T
Tor Project blog
AWS News Blog
AWS News Blog
Simon Willison's Weblog
Simon Willison's Weblog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
爱范儿
爱范儿
P
Privacy International News Feed
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
S
Securelist
G
Google Developers Blog
The Last Watchdog
The Last Watchdog
Google Online Security Blog
Google Online Security Blog
美团技术团队
F
Fortinet All Blogs
小众软件
小众软件
Recorded Future
Recorded Future
V
Visual Studio Blog
B
Blog RSS Feed
H
Help Net Security
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
Martin Fowler
Martin Fowler
Latest news
Latest news
Spread Privacy
Spread Privacy
H
Heimdal Security Blog

博客园 - analysis

再上百度空间(此博客将不再更新,后续文章请访问我的百度空间:http://hi.baidu.com/insight ) unary,binary,ternary LoadRunner安装问题 Apache PHP 配置 - analysis 修改 EditPlus 2.30 在Windows资源管理器右键菜单中的快捷键字母 - analysis Widget 还是 Gadget "gtalk:" 启动方式分析 - analysis - 博客园 迷恋于gVim 充分利用Gmail中的Drafts功能 Google各项Web应用界面及技术的不统一性 怎样确认对方使用的是GoogleTalk还是Gmail with Chat或者其他非Talk客户端 系统软件和数据软件 代码,文档,程序 Firefox 2.0 配置文件中代理服务器设置参数的位置及含义 svn 练习 使用笔记 Google Notebook 缺陷 去除 迅雷 5 广告条 (版本 5.5.2.252) Modal和Modeless 金山词霸2007昨天发布
安装 Java SE 6 Development Kit
analysis · 2007-02-08 · via 博客园 - analysis

安装过程中,安装程序没有改变Path(或path)变量。
命令行下,运行java,有输出;运行javac,无输出。
c:\windows下dir /a/s *java*.*,发现以下增加的java相关文件:(均在system32目录中)
2007-02-03  09:57           135,168 java.exe
2007-02-03  09:57            69,632 javacpl.cpl
2003-02-28  18:26           187,152 javacypt.dll
2003-02-28  18:26           139,536 javaee.dll
1998-06-12  00:00           230,861 JAVALE.DLL
1998-06-02  11:46            11,403 javaperm.hlp
2003-02-28  18:26            63,248 javaprxy.dll
2003-02-28  18:26           404,752 javart.dll
1998-06-02  11:46            21,444 javasec.hlp
2003-02-28  16:54             7,315 javasup.vxd
2007-02-03  09:57           135,168 javaw.exe
2007-02-03  09:57           139,264 javaws.exe
2003-02-28  18:26           947,472 msjava.dll

基于以上的事实,所以安装完后要首先设置javac的path环境变量:
在用户变量path中增加javac所在的路径"C:\Program Files\Java\jdk1.6.0\bin;"

另外:
1.用户变量和系统变量以及它们在注册表中的位置:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment和HKEY_CURRENT_USER\Environment。
注意:对于"Path"变量,用户变量为path,系统变量为Path。
2.用户变量和系统变量的先后顺序?
先查找系统变量再查找用户变量。
3.\Java\jdk1.6.0\bin中的java.exe和system32目录中的java.exe是完全一样的

4.JAVA_HOME=C:\Program Files\Java\jdk1.6.0;
CLASSPATH=.;C:\Program Files\Java\jdk1.6.0\lib;  此步是否有必要???
(可以组合使用"JAVA_HOME"和"%JAVA_HOME%\Bin"来设置javac的path路径。
JAVA_HOME路径也可以给其他程序使用,例如Tomcat。)