In general, I don't believe this is possible in the sense you mean. You can System.exec()
to spin off a new process, and can call a new JVM that way. Note that you can certainly call fork()
directly from native code, but in the words of a poster here, "Don't. Just don't."