3

我面临一个问题。我javac.exe在我的机器上重命名并注意到 antjavac任务仍然可以正常工作。

有人知道它从哪里得到 javac.exe 吗?

4

2 回答 2

6

实际上,我相信,默认情况下,Ant 会尝试使用以下代码直接执行 java 编译器类:

try {
        Class c = Class.forName ("com.sun.tools.javac.Main");
        Object compiler = c.newInstance ();
        Method compile = c.getMethod ("compile",
            new Class [] {(new String [] {}).getClass ()});
        int result = ((Integer) compile.invoke
                      (compiler, new Object[] {cmd.getArguments()}))
            .intValue ();
        return (result == MODERN_COMPILER_SUCCESS);

    } catch (Exception ex) {
        if (ex instanceof BuildException) {
            throw (BuildException) ex;
        } else {
            throw new BuildException("Error starting modern compiler",
                                     ex, location);
        }
    }

代码来自这里

这意味着如果库 tools.jar 在 Ant 的当前类路径上,它将拾取该类并启动它。这导致 javac.exe 可以重命名为您想要的任何内容,它仍然可以工作。因此,要回答您的问题,它实际上不执行任何“javac.exe”。

Javac 任务还有其他实现,但我认为这是所有编译器 1.3+ 的默认实现

于 2012-05-10T23:30:29.753 回答
-1

您可以尝试从这里开始并检查全局build.compiler属性中配置的内容,它可能指向其他地方

于 2012-05-10T23:22:29.723 回答