/ / java - java、コマンドラインでdosコマンドを実行する方法

どのようにjava - java、コマンドラインのオプションでdosコマンドを実行する

私はdosを実行したい場合は、Javaプログラムを介して外部コマンドを何か方法は私を助けてください

回答:

回答№1は6
    String[] options = new String[]{"option1", "option2"};
Runtime.getRuntime().exec("command", options);

回答№2については2

次のコードは、dirコマンドを実行してエラーを表示するだけでなく、印刷します。取られ、(http://www.devdaily.com/java/edu/pj/pj010016

import java.io.*;

public class JavaRunCommand {

public static void main(String args[]) {

String s = null;

try {

// run the Windows command (dir)
// using the Runtime exec method:
Process p = Runtime.getRuntime().exec("dir");

BufferedReader stdInput = new BufferedReader(new
InputStreamReader(p.getInputStream()));

BufferedReader stdError = new BufferedReader(new
InputStreamReader(p.getErrorStream()));

// read the output from the command
System.out.println("Here is the standard output of the command:n");
while ((s = stdInput.readLine()) != null) {
System.out.println(s);
}

// read any errors from the attempted command
System.out.println("Here is the standard error of the command (if any):n");
while ((s = stdError.readLine()) != null) {
System.out.println(s);
}

System.exit(0);
}
catch (IOException e) {
System.out.println("exception happened
- here"s what I know: ");
e.printStackTrace();
System.exit(-1);
}
} }