How to run an application(process) in java as background process.It should run back to my application my application shopuld be always on foreground.I am using
p = Runtime.getRuntime().exec( "C:/Program Files/Vehicle Spy 3/vspy3Demo.exe");
I have also used "/c" like the following:
p = Runtime.getRuntime().exec( "C:/Program Files/Vehicle Spy 3/vspy3Demo.exe /c");
But it is every time opening in foreground any one can help me..