Is it possible to do a "C like" fork in java, using an new independent jvm process ?
How?
feedback
|
|
Funnily, I am just working on this: a Java process running other Java processes. I used the article From Runtime.exec() to ProcessBuilder as a solid base, and When Runtime.exec() won't as a good advice how to gobble the output streams. PS.: For those wondering, I had to do that (instead of spawning new threads) because yet another Java process is checking the presence of these processes which are, normally, ran separately with shell commands. | ||||
|
feedback
|
|
http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Runtime.html Every Java application has a single instance of class Runtime that allows the application to interface with the environment in which the application is running. The current runtime can be obtained from the getRuntime method. Nothing stopping you firing another JVM from here. | |||||
feedback
|
|
This answer is probably a little late but: seems to be exactly what your looking for | |||||||
feedback
|