Tagged Questions
The jsr199 tag has no wiki summary.
7
votes
2answers
2k views
How to set classpath when I use javax.tools.JavaCompiler compile the source?
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?
6
votes
3answers
407 views
JavaCompiler from JDK 1.6: how to write class bytes directly to byte[] array?
So I recently learned of the new JavaCompiler API available in JDK 1.6. This makes it very simple to compile a String to a .class file directly from running code:
String className = "Foo";
String ...
3
votes
2answers
520 views
how to run code compiled by JavaCompiler?
Is there any way to run program compiled by JavaCompiler? [javax.tools.JavaCompiler]
My code:
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
...
3
votes
1answer
370 views
is javax.tools depends on JDK?
i want to use JavaCompiler to dynamic create some classes.
i find the source code of javax.tools package, but there is no implementation, some posts on internet says it depends on tools.jar, i am not ...
3
votes
1answer
360 views
Compiling a set of Java files inside a directory tree with the JSR 199 Compiler API
I'm trying to compile many files using the Compiler API.
Say I have a directory structure
.../program
+/org
+/foo
|+ Main.java
+/bar
+ Tools.java
Is there any way to discover ...