我在Java 6中的动态编译工作正常。但是,我想改变输出路径。我已经尝试了很多东西(我会饶了你)无济于事。无论如何,这是工作代码
String[] filesToCompile = { "testFiles/Something.java" };
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
StandardJavaFileManager fileManager = compiler.getStandardFileManager(null, null, null);
Iterable<? extends JavaFileObject> compilationUnits = fileManager.getJavaFileObjects(filesToCompile);
CompilationTask task = compiler.getTask(null, fileManager, null,null, null, compilationUnits);
System.out.println("Good? " + task.call());
但是输出会转到源目录,这不是我想要的。
我怀疑答案可能在compiler.getTask
,但API并不是非常清楚某些参数可能意味着什么。或者也许使用fileManager。我试过了
fileManager.setLocation(StandardLocation.locationFor("testFiles2"), null);
但同样,猜测可能不是一个好主意。
谢谢!
编辑:我也尝试过使用这些选项(抱歉,如果有更紧凑的方式):
final List<String> optionsList = new ArrayList<String>();
optionsList.add("-d what");
Iterable<String> options = new Iterable<String>() {
public Iterator<String> iterator() {
return optionsList.iterator();
}
};
然后将选项传递给getTask,但错误消息是“无效标记。”
答案 0 :(得分:9)
我今天面临同样的问题。
答案(使用常规getTask
方法而不是`run)是在FileManager中指定输出目录:
fileManager.setLocation(StandardLocation.CLASS_OUTPUT, Arrays.asList(outputDir));
就是这样! :)
文档有点误导,我的意思是,样本可以派上用场。但最终它把我带到了那里。
编辑
这是一个正在运行的示例:
// write the test class
File sourceFile = new File("First.java");
FileWriter writer = new FileWriter(sourceFile);
writer.write(
"package load.test;\n" +
"public class First{}"
);
writer.close();
// Get the java compiler for this platform
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
StandardJavaFileManager fileManager = compiler.getStandardFileManager(
null,
null,
null);
//-- H E R E --//
// Specify where to put the genereted .class files
fileManager.setLocation(StandardLocation.CLASS_OUTPUT,
Arrays.asList(new File("/tmp")));
// Compile the file
compiler
.getTask(null,
fileManager,
null,
null,
null,
fileManager.getJavaFileObjectsFromFiles(Arrays.asList(sourceFile)))
.call();
fileManager.close();
// delete the file
sourceFile.deleteOnExit();
答案 1 :(得分:6)
第一篇文章中的代码可以正常工作,但会抛出以下错误:
java.lang.IllegalArgumentException: invalid flag: -d folder
这是因为通过传递"-d folder"
使得解析器认为它正在解析一个选项。选项必须与"-d", "folder"
分开。
工作示例如下:
JavaCompiler javaCompiler = ToolProvider.getSystemJavaCompiler();
StandardJavaFileManager sjfm = javaCompiler.getStandardFileManager(null, null, null);
String[] options = new String[] { "-d", "output" };
File[] javaFiles = new File[] { new File("src/gima/apps/flip/TestClass.java") };
CompilationTask compilationTask = javaCompiler.getTask(null, null, null,
Arrays.asList(options),
null,
sjfm.getJavaFileObjects(javaFiles)
);
compilationTask.call();
答案 2 :(得分:4)
我对Java 6动态编译器工具有0次经验。但没有其他人回答:)
编译任务获取FileManager
个对象。如果使用标准的,则在源目录树中生成类。您可以做的是为您自己的FileManager子类提供一个重写的getFileForOutput
方法。 getFileForOutput的API描述表明这将影响输出(= class)文件的位置。
<强>更新强>
如何连接文件管理器
ForwardingJavaFileManager,ForwardingFileObject和ForwardingJavaFileObject 子类化不能用于覆盖标准文件管理器的行为,因为它是通过在编译器上调用方法而不是通过调用构造函数来创建的。而应使用转发(或委托)。这些类可以轻松地将大多数调用转发给给定的文件管理器或文件对象,同时允许自定义行为。例如,考虑如何记录对JavaFileManager.flush()的所有调用:
final Logger logger = ...;
Iterable<? extends JavaFileObject> compilationUnits = ...;
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
StandardJavaFileManager stdFileManager = compiler.getStandardFileManager(null, null, null);
JavaFileManager fileManager = new ForwardingJavaFileManager(stdFileManager) {
public void flush() {
logger.entering(StandardJavaFileManager.class.getName(), "flush");
super.flush();
logger.exiting(StandardJavaFileManager.class.getName(), "flush");
}
};
compiler.getTask(null, fileManager, null, null, null, compilationUnits).call();
更新2
我阅读了动态编译并构建了自己的应用程序来执行此操作。这段代码包含了太多的仪式(即它可以简化),但它有效!
package yar;
import javax.tools.JavaCompiler;
import javax.tools.ToolProvider;
public class DynamicCompiler {
JavaCompiler compiler;
public DynamicCompiler() {
this.compiler = ToolProvider.getSystemJavaCompiler();
if (this.compiler == null) {
throw new NullPointerException("Cannot provide system compiler.");
}
}
public void compile() {
this.compiler.run(null, System.out, System.err,
"-d", "testFiles2",
"testFiles/Hello1.java", "testFiles/Hello2.java");
}
/**
* @param args
*/
public static void main(String[] args) {
try {
DynamicCompiler dc = new DynamicCompiler();
dc.compile();
} catch (Exception e) {
System.err.println(e.getMessage());
}
}
}
我不确定如何让这段代码与动态生成的Java文件列表一起使用;我可能只为每个源文件单独执行compiler.run
。