Interpret something, and run the generated bytecode in Java? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T15:55:25Zhttp://stackoverflow.com/feeds/question/1045827http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1045827/interpret-something-and-run-the-generated-bytecode-in-java3Interpret something, and run the generated bytecode in Java?jmoeller2009-06-25T19:40:56Z2009-06-25T22:25:53Z
<p>I'm writing a toy interpreter with a REPL in Java. I'd like to generate bytecode from the language and run that, instead of interpreting an AST and running that instead.</p>
<p>Since my Java is a bit rusty, is it possible to run generated bytecode on the fly on the JVM?</p>
http://stackoverflow.com/questions/1045827/interpret-something-and-run-the-generated-bytecode-in-java/1045836#10458364Answer by skaffman for Interpret something, and run the generated bytecode in Java?skaffman2009-06-25T19:43:57Z2009-06-25T19:43:57Z<p>You can use java.lang.Classloader.defineClass(), which turns bytecode into a Class object. You can the call newInstance() on the resulting Class object, and off you go.</p>
http://stackoverflow.com/questions/1045827/interpret-something-and-run-the-generated-bytecode-in-java/1046545#10465450Answer by Thorbjørn Ravn Andersen for Interpret something, and run the generated bytecode in Java?Thorbjørn Ravn Andersen2009-06-25T22:25:53Z2009-06-25T22:25:53Z<p>Have a look at Javassist which contains a snippet compiler allowing you to compile Java snippets to bytecode and define them as a method in a class which you can then invoke.</p>