Runtime.exec() | Java

 

Descripción

Convierte el carácter pasado como parámetro en minúsculas.

Sintaxis

public Process exec(String command) throws IOException
public Process exec(String[] cmdarray) throws IOException
public Process exec(String[] cmdarray, String[] envp) throws IOException
public Process exec(String[] cmdarray, String[] envp, File dir) throws IOException
public Process exec(String command, String[] envp) throws IOException
public Process exec(String command, String[] envp, File dir) throws IOException

Parámetros

  • String command,
  • File dir,
  • String[] envp,
  • String[] cmdarray,

Excepciones

IllegalArgumentException, IOException, SecurityException, IndexOutOfBoundsException, UnsupportedOperationException, NullPointerException

Clase Padre

Runtime

Ejemplo

String cmd = "halt"; //comando de apagado en linux
Runtime.getRuntime().exec(cmd);

String [] cmd2 = {"shutdown","-s","-t", "10"}; //comando de apagado en windows
Runtime.getRuntime().exec(cmd2);
 
Process process = Runtime.getRuntime().exec("lsb_release -a");
InputStream inputstream = process.getInputStream();

Líneas de Código

    Manual Java

    Aprende más sobre Java consultando online o descargando nuestro manual.

    Test Java

    ¿Te atreves a probar tus habilidades y conocimiento en Java con nuestro test?

    Vídeos Java

    Disfruta también de nuestros artículos sobre Java en formato vídeo. Aprovecha y suscribete a nuestro canal.