Is it possible to do a "C like" fork in java, using an new independent jvm process ?

How?

link|improve this question

Maybe you could go into greater detail about what you're trying to accomplish? As mentioned, you can exec() another process, which could be another instance of the JVM, but that doesn't give you the same state-sharing as fork() does in C. On the other hand, you can run threads, but there you get more sharing than you would with fork(). – Mark Bessey Nov 13 '08 at 17:56
I simply want to avoid the sharing that thread implies. Thks for your concern :) – sakana Nov 14 '08 at 13:42
feedback

3 Answers

up vote 6 down vote accepted

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.

link|improve this answer
Broken links =[ – Dartoxian Dec 20 '11 at 18:39
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.

link|improve this answer
This isn't quite the same as fork(), since you don't get access to the copy of the existing process. All you can really do is the equivalent of fork() + exec(). – Mark Bessey Nov 13 '08 at 17:52
fork() is very different from exec() – Vladimir Dyuzhev Nov 13 '08 at 20:33
feedback

This answer is probably a little late but:

http://akuma.kohsuke.org/

seems to be exactly what your looking for

link|improve this answer
it seems that it doesn't truly fork but exec's new child processes in a way that gives some benefits like fork. – rogerdpack Dec 23 '11 at 0:07
1  
Note that it works only on POSIX-like system (so roughly everything but Windows) – CharlesB Jan 18 at 15:41
feedback

Your Answer

 
or
required, but never shown

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