/ / como ejecutar el comando dos con opciones en java - java, linea de comando

cómo ejecutar el comando dos con opciones en java - java, línea de comandos

Quiero ejecutar un comando externo basado en dos a través del programa java si hay alguna manera, por favor, ayúdame

Respuestas

6 para la respuesta № 1
    String[] options = new String[]{"option1", "option2"};
Runtime.getRuntime().exec("command", options);

2 para la respuesta № 2

El siguiente bit de código ejecutará el comando dir, y luego se imprimirá por usted y error. Tomado y adaptado dehttp://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);
}
} }