Interpret something, and run the generated bytecode in Java? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T15:55:25Z http://stackoverflow.com/feeds/question/1045827 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1045827/interpret-something-and-run-the-generated-bytecode-in-java 3 Interpret something, and run the generated bytecode in Java? jmoeller 2009-06-25T19:40:56Z 2009-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#1045836 4 Answer by skaffman for Interpret something, and run the generated bytecode in Java? skaffman 2009-06-25T19:43:57Z 2009-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#1046545 0 Answer by Thorbjørn Ravn Andersen for Interpret something, and run the generated bytecode in Java? Thorbjørn Ravn Andersen 2009-06-25T22:25:53Z 2009-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>