Domande taggate «runtime.exec»

11
Come posso eseguire un file batch dalla mia applicazione Java?
Nella mia applicazione Java, voglio eseguire un file batch che richiami " scons -Q implicit-deps-changed build\file_load_type export\file_load_type" Sembra che non riesca nemmeno a far eseguire il mio file batch. Sono a corto di idee. Questo è quello che ho in Java: Runtime. getRuntime(). exec("build.bat", null, new File(".")); In precedenza, avevo …

4
Come far funzionare le pipe con Runtime.exec ()?
Considera il codice seguente: 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[] b = new byte[16]; i.read(b, 0, b.length); …
104 java  exec  runtime.exec 

4
Differenza tra ProcessBuilder e Runtime.exec ()
Sto cercando di eseguire un comando esterno da codice java, ma ho notato una differenza tra Runtime.getRuntime().exec(...)e new ProcessBuilder(...).start(). Quando si utilizza Runtime: Process p = Runtime.getRuntime().exec(installation_path + uninstall_path + uninstall_command + uninstall_arguments); p.waitFor(); exitValue è 0 e il comando è terminato ok. Tuttavia, con ProcessBuilder: Process p = (new …

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.