javaDoc 有点用处:https ://docs.oracle.com/javase/7/docs/api/javax/tools/JavaCompiler.html
主要是这个:
JavaCompiler.CompilationTask getTask(Writer out, JavaFileManager fileManager, DiagnosticListener diagnosticListener, Iterable options, Iterable classes, Iterable compilationUnits)
参数:
- out - 用于编译器附加输出的 Writer;如果为 null,则使用 System.err
- fileManager - 文件管理器;如果 null 使用编译器的标准文件管理器
- diagnosticListener - 一个诊断监听器;如果为 null,则使用编译器的默认方法来报告诊断
- classes - 注解处理要处理的类名,null表示没有类名
- options - 编译器选项,null 表示没有选项
- compilationUnits - 要编译的编译单元,null 表示没有编译单元
所以 .....
我用以下方式打开了一个项目
package compileTest1;
import java.io.File;
import java.net.URL;
import java.net.URLClassLoader;
import java.util.Arrays;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.Locale;
import javax.tools.Diagnostic;
import javax.tools.DiagnosticCollector;
import javax.tools.JavaCompiler;
import javax.tools.JavaCompiler.CompilationTask;
import javax.tools.JavaFileObject;
import javax.tools.StandardJavaFileManager;
import javax.tools.ToolProvider;
public class MyCompiler {
private File classesDir;
private File sourceDir;
public void loadClassesFromCompiledDirectory() throws Exception {
new URLClassLoader(new URL[]{classesDir.toURI().toURL()});
}
public void compile() throws Exception {
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
DiagnosticCollector<JavaFileObject> diagnostics = new DiagnosticCollector<JavaFileObject>();
StandardJavaFileManager fileManager = compiler.getStandardFileManager(diagnostics, Locale.getDefault(), null);
List<JavaFileObject> javaObjects = scanRecursivelyForJavaObjects(sourceDir, fileManager);
if (javaObjects.size() == 0) {
throw new Exception("There are no source files to compile in " + sourceDir.getAbsolutePath());
}
String[] compileOptions = new String[]{"-d", classesDir.getAbsolutePath()} ;
Iterable<String> compilationOptions = Arrays.asList(compileOptions);
CompilationTask compilerTask = compiler.getTask(null, fileManager, diagnostics, compilationOptions, null, javaObjects) ;
if (!compilerTask.call()) {
for (Diagnostic<?> diagnostic : diagnostics.getDiagnostics()) {
System.err.format("Error on line %d in %s", diagnostic.getLineNumber(), diagnostic);
}
throw new Exception("Could not compile project");
}
}
private List<JavaFileObject> scanRecursivelyForJavaObjects(File dir, StandardJavaFileManager fileManager) {
List<JavaFileObject> javaObjects = new LinkedList<JavaFileObject>();
File[] files = dir.listFiles();
for (File file : files) {
if (file.isDirectory()) {
javaObjects.addAll(scanRecursivelyForJavaObjects(file, fileManager));
}
else if (file.isFile() && file.getName().toLowerCase().endsWith(".java")) {
javaObjects.add(readJavaObject(file, fileManager));
}
}
return javaObjects;
}
private JavaFileObject readJavaObject(File file, StandardJavaFileManager fileManager) {
Iterable<? extends JavaFileObject> javaFileObjects = fileManager.getJavaFileObjects(file);
Iterator<? extends JavaFileObject> it = javaFileObjects.iterator();
if (it.hasNext()) {
return it.next();
}
throw new RuntimeException("Could not load " + file.getAbsolutePath() + " java file object");
}
public File getClassesDir() {
return classesDir;
}
public void setClassesDir(File classesDir) {
this.classesDir = classesDir;
}
public File getSourceDir() {
return sourceDir;
}
public void setSourceDir(File sourceDir) {
this.sourceDir = sourceDir;
}
}
取自https://github.com/ishubin/blogix/blob/master/src/main/java/net/mindengine/blogix/compiler/BlogixCompiler.java
主要方法是:
public static void main(String[] args) {
MyCompiler compiler = new MyCompiler();
compiler.setClassesDir(new File("."));
compiler.setSourceDir(new File("C:\\Users\\...\\workspace\\compileTest\\src\\objectA"));
try {
compiler.compile();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
ObjectA 在他的 c'tor 中接收了 ObjectB,所以我们知道 A 依赖于 B,
以确保我尝试在 cmd 中使用 javac 编译 ObjectA 并得到错误
我在 cmd 中遇到的错误:
img1
项目结构:
img2
还有一件事,我将 classesDir 设置为路径为“。”的文件。所以编译出来的java文件的.class文件会存放在项目的bin文件夹中。
当 .java 文件位于两个不同的包中时,也可以找到工作:
img3
我所做的唯一更改是将 classesDir 值更改为 -> "... \compileTest\bin"