That may sound stupid. But is it at all possible? I was thinking about creating a program that would allow someone to code inside it, and then run the code to test the output. To do this of course, I need to be able to compile and run Java from within Java. Thanks in advance.
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.
|
|
|
JDK6 added a compiler tools api That should do what you want. |
|||||
|
|
You could very well try to simulate the terminal or command line from a java program using the following code snippet ...
So what this code basically does is that it executes a bash shell in which it executes various shell commands like |
|||
|
|