java Programming Glossary: dostuff.exe
difference between ProcessBuilder and Runtime.exec() http://stackoverflow.com/questions/6856028/difference-between-processbuilder-and-runtime-exec So for example on Windows Runtime.getRuntime .exec C DoStuff.exe arg1 arg2 will pass the line C DoStuff.exe arg1 arg2 to cmd.exe.. .exec C DoStuff.exe arg1 arg2 will pass the line C DoStuff.exe arg1 arg2 to cmd.exe which runs a DoStuff.exe program with the.. the line C DoStuff.exe arg1 arg2 to cmd.exe which runs a DoStuff.exe program with the two given arguments. However ProcessBuilder..
|