“Java uruchom polecenie Shell” Kod odpowiedzi

Java uruchom polecenie Shell

String homeDirectory = System.getProperty("user.home");
Process process;
if (isWindows) {
    process = Runtime.getRuntime()
      .exec(String.format("cmd.exe /c dir %s", homeDirectory));
} else {
    process = Runtime.getRuntime()
      .exec(String.format("sh -c ls %s", homeDirectory));
}
StreamGobbler streamGobbler = 
  new StreamGobbler(process.getInputStream(), System.out::println);
Executors.newSingleThreadExecutor().submit(streamGobbler);
int exitCode = process.waitFor();
assert exitCode == 0;
Horrible Hyena

Jak uruchomić plik Java w terminalu

javac FirstJavaProgram.java
uncommon_student

Odpowiedzi podobne do “Java uruchom polecenie Shell”

Pytania podobne do “Java uruchom polecenie Shell”

Więcej pokrewnych odpowiedzi na “Java uruchom polecenie Shell” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu