«runtime.exec» etiketlenmiş sorular

11
Java Uygulamamdan bir toplu iş dosyasını nasıl çalıştırırım?
Java uygulamamda, " scons -Q implicit-deps-changed build\file_load_type export\file_load_type" çağıran bir toplu iş dosyası çalıştırmak istiyorum Görünüşe göre toplu iş dosyamı yürütmek için bile alamıyorum. Fikirler tükendi. Java'da sahip olduğum şey bu: Runtime. getRuntime(). exec("build.bat", null, new File(".")); Önceden, çalıştırmak istediğim bir Python Sconscript dosyam vardı, ancak bu işe yaramadığı için …

4
Borular Runtime.exec () ile nasıl çalıştırılır?
Aşağıdaki kodu göz önünde bulundurun: 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, …
104 java  exec  runtime.exec 

4
ProcessBuilder ve Runtime.exec () arasındaki fark
Java kodundan harici bir komut yürütmeye çalışıyorum, ancak Runtime.getRuntime().exec(...)ve arasında fark ettiğim bir fark var new ProcessBuilder(...).start(). Kullanırken Runtime: Process p = Runtime.getRuntime().exec(installation_path + uninstall_path + uninstall_command + uninstall_arguments); p.waitFor(); exitValue 0 ve komut tamamlandı. Ancak şu şekilde ProcessBuilder: Process p = (new ProcessBuilder(installation_path + uninstall_path + uninstall_command, uninstall_arguments)).start(); p.waitFor(); …

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.