I have found many references explaining how to programmatically compile a Java class using the JavaCompiler class:

JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
int result = compiler.run(null, null, null, "a_file_name");

However, I would like to know if there is an open source library that let me compile source code generated programmatically (therefore without a src file being involved) and generate some byte code in an output stream (without generating a class file in the file system).

For example, I am looking for being able to write something like this:

InputStream input = generateSourceCode();
OutputStream output = getByteCode(input);
doCoolStuffWithByteCode(output);

Thanks for any help.

link|improve this question

79% accept rate
See the SSCCE Text Based Compiler for a demo. of what James & Brian are referring to. The STBC uses JavaCompiler/SimpleJavaFileObject. – Andrew Thompson Nov 3 '11 at 5:55
feedback

2 Answers

up vote 8 down vote accepted

For an example you can look at

http://www.java2s.com/Code/Java/JDK-6/CompilingfromMemory.htm

Basically you will create the java class in a string.

Then put the string into class where you extend SimpleJavaFileObject.

Then compile it using JavaCompiler.

Finally, call the methods in your class.

A different approach, if you want to not have anything saved as a file, but have the emitted bytecodes stored in memory also is described here:

http://www.javablogging.com/dynamic-in-memory-compilation/

link|improve this answer
+1 Thanks a lot for the pointers. The last link shows almost what I am looking for. The only difference is that apparently it requires to know the name of the class to be compiled in advance, and the only thing I have is its full source code. – Sergio Nov 3 '11 at 9:53
Can you just search the class for the word 'public class' and the next word will be the class name perhaps. – James Black Nov 3 '11 at 10:13
I know I can manually scan the source code, just wondering if something more elegant could be done. Thanks ! – Sergio Nov 3 '11 at 10:35
feedback

JavaDocs are your friend:

http://download.oracle.com/javase/6/docs/api/javax/tools/JavaCompiler.html

Look at the last section that refers to the SimpleJavaFileObject; it shows you how to use it in conjunction with code that is stored in a String

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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