Hi, How can you get a Java application to run in the background = (dos ! open.). I've never seen an example of how this can be done, I also tried Google, but didn't find anything.
Thanks.
Printable View
Hi, How can you get a Java application to run in the background = (dos ! open.). I've never seen an example of how this can be done, I also tried Google, but didn't find anything.
Thanks.
On windows it is done by calling
javaw YourClass
On linux it is done by calling
java YourClass &
There are some projects that will run your programs as windows services as well.