run shell command from java

I recall that the an overload of exec method provides a parameter for the arguments seperately. You need to use that

Yup. Here is it

public Process exec(String[] cmdarray)
             throws IOException

Just make the command line and all arguments Seperate elements of the String array

Leave a Comment