0

So i understand how to use the Runtime command in java pretty well to get an executable to run. My question is how would i code that to incorporate a parameter such as you would see in the target in a shortcut property, i.e. target: "C:......\notepad.exe" -w. In what way could I incorporate a parameter such as -w into the Java runtime command.

4 Answers 4

4

Use a ProcessBuilder and supply the necessary arguments to its constructor:

ProcessBuilder builder = new ProcessBuilder("C:\\path\\to\\notepad.exe", "-w");

The first argument is always the application, any other arguments (if present) will be the arguments to add to the application.

You can then call the start() method to start it and grab the process object back if you so wish.

Sign up to request clarification or add additional context in comments.

1 Comment

1

Take a look at ProcessBuilder - http://download.oracle.com/javase/1.5.0/docs/api/java/lang/ProcessBuilder.html

This should provide you a relatively fail-safe way to execute with parameters and arguments

Comments

0

You can supply String[] to the exec method, see here. Where the first argument is the command and the next are the parameters.

Comments

0

In addition to the abovementioned, you can do something like:

                    Runtime.getRuntime().exec(exeFile.toString() + "params");

where exeFile is a File of your executable.

1 Comment

This isn't a great idea because you have to put the spaces in manually between arguments (causing more potential for errors) and it's not necessarily platform independent.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.