hi all, Is there any way that I can invoke an external program or shell command under unix? Thanks a lot. Regards Waldle
Elisabeth Van
Ranch Hand
Joined: Feb 09, 2001
Posts: 42
posted
0
Here's some code that I've used to run an executable and pass in command line arguments.
Runtime rt = Runtime.getRuntime(); Process prcs = rt.exec("/prd1/exe/udms mod 4rw salary gen con <infile.txt >/dev/null"); prcs.waitFor();
In this example, udms is the executable, the rest of it is command line arguments particular to this application. Hopefully this will help you get started. You're also going to have to handle IOException and InterruptedException. Hope this helps.
Waldle Cai
Ranch Hand
Joined: Aug 16, 2000
Posts: 34
posted
0
thanks for your prompt reply!! it's exactly what i wanted.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.