> Can someone show me how I would go about having a java program launch a
> different program, but not as a child process?
[quoted text clipped - 7 lines]
>
> Thanks
Then don't wait for it. It should work fine as long as there isn't any
console I/O in your execed program.

Signature
Knute Johnson
email s/nospam/knute/
BigCohunes@gmail.com - 07 Sep 2006 18:30 GMT
> Then don't wait for it. It should work fine as long as there isn't any
> console I/O in your execed program.
[quoted text clipped - 3 lines]
> Knute Johnson
> email s/nospam/knute/
Thanks!
My problem turned out to be that I was running it in a IDE (IntelliJ).
It seems that IntelliJ did not consider the java program was finished
until the child process was exited also.
However when I ran from command line it worked as expected.
Thanks again