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 sure tools.jar associates with JRE.

so can i run the program in a JRE environment without JDK installed?

another question, what is the implementation detail of JavaCompiler, is it creating a new process to invoke the javac command?

thanks

link|improve this question

54% accept rate
You might want to read forums.sun.com/thread.jspa?threadID=5161541 – Pascal Thivent Nov 11 '09 at 9:41
feedback

1 Answer

up vote 5 down vote accepted

JRE's need to include the interfaces, and classes in that package, but do not need to provide implementations.

Sun's JRE doesn't, and returns null from calling ToolProvider.getSystemJavaCompiler().

This other question addresses java 5.

Here's a blog post by Morten Nobel-Jørgensen on how to use eclipse's compiler as an implementation of javax.tools.JavaCompiler.

JavaCompiler javac = new EclipseCompiler();
link|improve this answer
thank you, i already finished the coding, but if the getSystemJavaCompiler() returns null, the program would fail. so i need to avoid it – Brodie Nov 11 '09 at 9:43
The blog post link is dead, the updated link is here – prunge Sep 6 '11 at 4:10
@prunge thanks. – Stephen Denne Sep 7 '11 at 2:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.