|
Java™ by example!
|
|
|
How do I execute another java app from an already running one?
You can either invoke the program entry point (the "main" function) of the other application:
This will run App2 in the currently running JVM. You could also have the new application running in another instance of a VM:
Further Information
Author of answer: Joris Van den Bogaert
Comments
Comments to this answer are only viewable by members. Login or become a member!
|
|
|
|
|