I\'ve developed a Java console application that when start, open a console window and remain in foreground, i want to start that application in background .
Now i la
If you are doing this in anything unix based then you can append & to the end which will spawn a new thread and keept it running in the background.
java -jar myapp.jar &