I would like to create a process in my application. But after looking around and from Java’s API I still don’t quite get it.
Basically I want to create a multi process application. But the new process is a class in my application.
I know some of you might ask why not create a thread? Because the class is calling a matlab code, the problem and the Java class is Here
Is there any way to do this?
There is only one way to create processes in Java,
Runtime.exec()– basically it allows you to start a new JVM just as you would via the command line interface.