Just out of curiosity. Can we compile & run a java file from another java program? If so, can you send a reference to that knowledge source?
feedback
|
|
Take a look at Java Compiler Api and this little example. | |||
|
feedback
|
|
If you have the java source code already in a file, then you can just call the java compiler. The java compiler is built-in to the JVM libraries as of version 1.6. | |||
|
feedback
|
|
If you're using Java 6, the best way to do this is through the If you're using an older version of Java, you must call | |||
|
feedback
|
|
Yes, you can, but you need java compiler and not only java runtime. First you generate your source, save it and then use Dynamic class loading(tutorial http://tutorials.jenkov.com/java-reflection/dynamic-class-loading-reloading.html) | |||
|
feedback
|
|
You can use javac (JDK is needed): | |||
|
feedback
|
|
You can do it by calling the cmd prompt or use the Main class from the Java Code. I don't know remember well how is it, but I did it a long time ago. | |||
|
feedback
|