Perguntas com a marcação «runtime.exec»

104
Como fazer tubos funcionarem com Runtime.exec ()?

Considere o seguinte código: String commandf = "ls /etc | grep release"; try { // Execute the command and wait for it to complete Process child = Runtime.getRuntime().exec(commandf); child.waitFor(); // Print the first 16 bytes of its output InputStream i = child.getInputStream(); byte[]...