Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的系统上,我安装了 Sun JRE(不是 JDK)和 MyEclipse IDE。
我在 Program Files(windows 平台)的 MyEclipse 安装文件中搜索了 javac.exe,但我得到了no results found for javac.exe.
no results found for javac.exe
MyEclipse 使用哪个工具来编译 .java 文件?
Eclipse 包括它自己的 Java 编译器,由项目从头开始编写。在某些边缘情况下,它并不总是与 Oracle 的编译器完全一致。他们这样做是为了获得快速的增量编译。如果您想以这种方式滚动,您甚至可以从 ant 中使用它来代替 javac。
#1:通常你需要 JDK。JDK 是指包含 java-compiler 的Java Development Kitjavac
javac
#2:没有得到你真正想问的第二个问题?