我在 Mac OSX Mountain Lion 上安装了 jdk 6,我可以直接从 eclipse 创建新的 java 项目。
我正在尝试修改 alex holmes 在json-mapreduce (https://github.com/alexholmes/json-mapreduce)编写的代码。我的第一个目标是将代码引入 Eclipse 构建中,以便调试代码。我做了以下事情:
Launch Eclipse -> File -> New Project -> New project from ant build file
-> select the build.xml downloaded from the above link
它引发以下错误:
<> "javac" task not found in target "compile"
<> "java" task not found in target "test"
Eclipse 显示代码,但不进行任何构建或运行任何测试。由于上述错误,似乎出了点问题,但是我可以看到在 eclipse 中创建的其他 java 项目工作正常。
(Eclipse 显示已安装的 JRE 位置/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home
:)
欣赏任何想法。