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
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
Vídeos Java
Disfruta también de nuestros artículos sobre Java en formato vídeo. Aprovecha y suscribete a nuestro canal.