Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicates:
using eval in Java
Loading external source code and using them internally (by re-compiling or something)

I want to simulate an 'eval' in Java such that the function takes in a String (some source code), compiles it, runs it, and spits back the return value.

I know I can compile it using the JavaCompiler API, but I am unsure the best way to actual run the code like this. Runtime.exec feels too heavy for this task... I don't want to spawn another java process each time I run this 'eval' function just to evaluate '30+20' or something. This would be slow and resource intensive.

Finally, this must be able to run ANY java code, so relying on a scripting language evaluator inside Java won't do (ex. if the input is more complex Java than just '30+20')

Any alternatives?

share|improve this question
Also possible dup of How could I call Java code dynamically ? – Matt Ball Dec 10 '10 at 4:17

marked as duplicate by Matt Ball, BalusC, EboMike, Cameron Skinner, Software Monkey Dec 10 '10 at 4:26

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

I have never done this myself, but you can write your own ClassLoader and load the bytecodes into the JVM. There is a tutorial on this.

share|improve this answer

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