I use the class javax.tools.JavaCompiler (jdk6) to compile a source file, but the source file depends on some jar file. How to set the classpath of the javax.tools.JavaCompiler?
| ||||
|
feedback
|
|
The javax.tools.JavaCompiler#getTask() method takes an
All you'll need then is to get the proper classpath set when running the calling program. | |||
|
feedback
|
|
The same problem occurred to me recently, finally I found two workarounds. You can set the class path either by invoke StandardJavaFileManager.setLocation(StandardLocation.CLASS_PATH, "YOUR_CLASS_PATH") or Compiler.getTask(ARG_0, ARG_1, ARG_2, CLASS_PATH_OPTIONS, just as the first answer posted here says. | |||
|
feedback
|