Launch a native .exe on Windows

how do i get my java program to launch a native windows program with command line arguments? i’ve seen the answer here before but it was ages ago and the forum doesn’t seem to have that post anymore.

-Judd

http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Runtime.html

See exec()

Careful with exec. There are a lot of traps when using that thing. For instance you should wait for the process to complete and flush all io streams from the process periodicaly (whatever this means).