0

我试图让我的 Main 类在其控制台(eclipse)中打印出来自 Example1 类的输出(在资源/作为 .java 文件中),这取决于 Example2 类。我有这个想法是出于评分目的 - 在 javafx 应用程序中实现它,该应用程序在使用 FileChooser 找到的编译类文件上运行测试类(Example1)。我发现了有关使用 JavaCompiler 的信息,但我不知道如何使用它来编译依赖于 .class 文件的 .java 文件并执行它...

import java.io.File;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

import javax.tools.DiagnosticCollector;
import javax.tools.JavaCompiler;
import javax.tools.JavaFileObject;
import javax.tools.StandardJavaFileManager;
import javax.tools.ToolProvider;

public class Main {
    private static final String EXAMPLE1 = "resources/Example1.java";
    private static final String EXAMPLE2 = "resources/Example2.class";

    public static void main(String[] args) {

        JavaCompiler jc = ToolProvider.getSystemJavaCompiler();
        DiagnosticCollector<JavaFileObject> d = new DiagnosticCollector<>();
        StandardJavaFileManager fm = jc.getStandardFileManager(d, null, null);

        List<String> tag = new ArrayList<>();
        tag.add("-classpath");
        tag.add(System.getProperty("java.class.path") + File.pathSeparator + EXAMPLE2);

        File file = new File(EXAMPLE1);
        Iterable<? extends JavaFileObject> cu = fm.getJavaFileObjectsFromFiles(Arrays.asList(file));
        JavaCompiler.CompilationTask task = jc.getTask(null, fm, null, tag, null, cu);

        /*
         * ?
         */
    }
}

Example1 作为 .java 文件在resources/Example1.java.

public class Example1 {
    public static void main(String[] args) {
        Example2 ex2 = new Example2(1, 2);
        System.out.println("x : " + ex2.x + ", y : " + ex2.y);
        System.out.println("sum : " + ex2.sum());
        System.out.println("mult : " + ex2.mult());
    }
}

Example2 作为 .class 文件resources/Example2.class

public class Example2 {
    int x;
    int y;

    Example2(int x, int y) {
        this.x = x;
        this.y = y;
    }

    public int sum() {
        return x + y;
    }

    public int mult() {
        return x * y;
    }
}
4

1 回答 1

1

类路径必须命名包含 的文件夹Example2.class,而不是文件名本身,因此将第二个更改tag.add(...)tag.add("resources").

您需要调用task.call()才能实际执行编译器。然后编译器会将文件放在Example1.class文件旁边Example1.java

要运行该类,您需要在类路径中设置一个ClassLoader文件resources夹,然后使用反射来获取Example1该类及其main方法。

StandardJavaFileManagerURLClassLoader都是资源,所以当你完成它们时,你应该使用 try-with-resources 来纠正它们。

这是工作代码:

JavaCompiler jc = ToolProvider.getSystemJavaCompiler();
DiagnosticCollector<JavaFileObject> d = new DiagnosticCollector<>();
try (StandardJavaFileManager fm = jc.getStandardFileManager(d, null, null)) {

    List<String> tag = new ArrayList<>();
    tag.add("-classpath");
    tag.add("resources");

    File file = new File(EXAMPLE1);
    Iterable<? extends JavaFileObject> cu = fm.getJavaFileObjectsFromFiles(Arrays.asList(file));
    JavaCompiler.CompilationTask task = jc.getTask(null, fm, null, tag, null, cu);
    if (! task.call())
        throw new IllegalStateException("compilation failed");
}

try (URLClassLoader classLoader = URLClassLoader.newInstance(new URL[] { new File("resources").toURI().toURL() })) {
    Class<?> example1Class = Class.forName("Example1", true, classLoader);
    Method mainMethod = example1Class.getMethod("main", String[].class);
    if (! Modifier.isStatic(mainMethod.getModifiers()))
        throw new IllegalStateException("main method is not static");
    mainMethod.invoke(null, (Object) new String[0]);
}

如果 中出现错误Example1.java,您将获得如下 STDERR 输出:

resources\Example1.java:3: error: cannot find symbol
        xExample2 ex2 = new Example2(1, 2);
        ^
  symbol:   class xExample2
  location: class Example1
1 error
Exception in thread "main" java.lang.IllegalStateException: compilation failed
    at Test.main(Test.java:32)

如果类编译,并且具有正确的名称和方法,STDOUT 输出将是:

x : 1, y : 2
sum : 3
mult : 2
于 2020-04-13T04:26:54.223 回答