How can I set the PATH variable for javac so I can manually compile my .java works?(如何为 javac 设置 PATH 变量,以便手动编译我的 .java 作品?)
问题描述
这是我驱动器上的地址:
Here's the address on my drive:
C:Program FilesJavajdk1.6.0_18in
C:Program FilesJavajdk1.6.0_18in
我将如何设置路径变量,以便我可以进入命令窗口 (windowskey+r "cmd") 并能够输入如下内容:
How would I go about setting the path variable so I can go in command window (windowskey+r "cmd") and be able to type things like:
javac TestApp.java
我使用的是 Windows 7 专业版.
I'm using Windows 7 Professional.
推荐答案
每次启动时在命令 shell 中键入 SET PATH
命令可能会让你很快变老.三种选择:
Typing the SET PATH
command into the command shell every time you fire it up could get old for you pretty fast. Three alternatives:
- 从批处理 (
.CMD
) 文件运行 javac.然后,您可以在执行javac
之前将SET PATH
放入该文件中.或者,如果您只是编写javac.exe
的显式路径,则可以不使用 - 在系统的环境变量"配置中设置增强的、改进的
PATH
. - 从长远来看,您会希望使用 Ant 自动编译 Java.但这需要首先对
PATH
进行另一个扩展,这使我们回到 (1) 和 (2).
SET PATH
- Run javac from a batch (
.CMD
) file. Then you can just put theSET PATH
into that file before yourjavac
execution. Or you could do without theSET PATH
if you simply code the explicit path tojavac.exe
- Set your enhanced, improved
PATH
in the "environment variables" configuration of your system. - In the long run you'll want to automate your Java compiling with Ant. But that will require yet another extension to
PATH
first, which brings us back to (1) and (2).
这篇关于如何为 javac 设置 PATH 变量,以便手动编译我的 .java 作品?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何为 javac 设置 PATH 变量,以便手动编译我的 .java 作品?
基础教程推荐
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 降序排序:Java Map 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01