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

11
Como executo um arquivo em lote do meu aplicativo Java?
Em meu aplicativo Java, desejo executar um arquivo em lote que chama " scons -Q implicit-deps-changed build\file_load_type export\file_load_type" Parece que não consigo nem mesmo fazer meu arquivo em lote executar. Estou sem ideias. Isso é o que tenho em Java: Runtime. getRuntime(). exec("build.bat", null, new File(".")); Anteriormente, eu tinha um …

4
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[] b = new byte[16]; i.read(b, 0, b.length); …
104 java  exec  runtime.exec 

4
Diferença entre ProcessBuilder e Runtime.exec ()
Estou tentando executar um comando externo de código java, mas há uma diferença que notei entre Runtime.getRuntime().exec(...)e new ProcessBuilder(...).start(). Ao usar Runtime: Process p = Runtime.getRuntime().exec(installation_path + uninstall_path + uninstall_command + uninstall_arguments); p.waitFor(); o exitValue é 0 e o comando é encerrado ok. No entanto, com ProcessBuilder: Process p = …

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.