我使用com.sun.tools.javac.Main.compile()
函数从我的支柱项目编译在运行时的java文件。 但对于一些文件,他们需要像Axis2的一些具体的罐子。 我有罐子,但我怎样才能将它们设置为类路径下,在运行Java文件? 我曾尝试与System.setProperty("java.class.path","jar dir");
但未能进行编译。
Answer 1:
下面的代码,它使用com.sun.tools.javac.Main
为我工作:
Apple.java
//This class is packaged in a jar named MyJavaCode.jar
import com.xyz.pqr.SomeJavaExamples;
public class Apple {
public static void main(String[] args) {
System.out.println("hello from Apple.main()");
}
}
AClass.java
import com.sun.tools.javac.Main;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
public class AClass {
public static void main(String[] args) {
try {
//Specify classpath using next to -cp
//This looks just like how we specify parameters for javac
String[] optionsAndSources = {
"-g", "-source", "1.5",
"-target", "1.5",
"-cp", ".:/home/JavaCode/MyJavaCode.jar",
"Apple.java"
};
PrintWriter out = new PrintWriter(new FileWriter("./out.txt"));
int status = Main.compile(optionsAndSources, out);
System.out.println("status: " + status);
System.out.println("complete: ");
}catch (Exception e) {}
}
}
注意:要编译这个AClass.java
, tools.jar
必须在classpath
,这是不存在默认情况下,所以你必须指定它。
如果你正在使用Java 1.6
,那么你应该考虑使用javax.tools.JavaCompiler
代替,其getTask( )方法接受一个参数options
,可以有classpath
。
例如:
import javax.tools.JavaCompiler;
import javax.tools.ToolProvider;
import javax.tools.JavaFileObject;
public final class AClass {
private static boolean compile(JavaFileObject... source ){
List<String> options = new ArrayList<String>();
// set compiler's classpath to be same as the runtime's
options.addAll(Arrays.asList("-classpath", System.getProperty("java.class.path")));
//Add more options including classpath
final JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
final JavaCompiler.CompilationTask task = compiler.getTask(/*default System.err*/ null,
/*std file manager*/ null,
/*std DiagnosticListener */ null,
/*compiler options*/ options,
/*no annotation*/ null,
Arrays.asList(source));
return task.call();
}
com.sun.tools.javac.Main
已被废弃,无证过。
文章来源: how to set classpath for com.sun.tools.javac.Main.compile() function?