如何运行JavaCompiler编译的代码?

时间:2010-01-28 18:21:55

标签: java java-compiler-api jsr199

有没有办法运行JavaCompiler编译的程序? [javax.tools.JavaCompiler]

我的代码:

JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
    DiagnosticCollector<JavaFileObject> diagnostics = new DiagnosticCollector<JavaFileObject>();
    CompilationTask task = compiler.getTask(null, null, diagnostics, null, null, prepareFile(nazwa, content));
    task.call();

    List<String> returnErrors = new ArrayList<String>();
    String tmp = new String();
    for (Diagnostic diagnostic : diagnostics.getDiagnostics()) {
        tmp = String.valueOf(diagnostic.getLineNumber());
        tmp += " msg: "+ diagnostic.getMessage(null);
        returnErrors.add(tmp.replaceAll("\n", " "));
    }

现在我想用寿命1秒运行该程序并获得输出到字符串变量。有什么方法可以做到吗?

2 个答案:

答案 0 :(得分:5)

你需要使用反射,类似的东西:

// Obtain a class loader for the compiled classes
ClassLoader cl = fileManager.getClassLoader(CLASS_OUTPUT);
// Load the compiled class
Class compiledClass = cl.loadClass(CLASS_NAME);
// Find the eval method
Method myMethod = compiledClass.getMethod("myMethod");
// Invoke it
return myMethod.invoke(null);

当然适应它以满足您的需求

答案 1 :(得分:1)

您必须将已编译的类添加到当前的类路径中。

根据项目的设置方式,有很多方法可以做到这一点。这是使用java.net.URLClassLoader的一个实例:

ClassLoader cl_old = Thread.currentThread().getContextClassLoader();
ClassLoader cl_new = new URLClassLoader(urls.toArray(new URL[0]), cl_old);

其中“urls”是指向文件系统的url列表。