Als «runtime.exec» getaggte Fragen

104
Wie funktioniert Pipes mit Runtime.exec ()?

Betrachten Sie den folgenden Code: 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();...