// start the process command
String []cmd = {executable,param1,..,paramN}
Runtime runtime = Runtime.getRuntime();
Process proc = runtime.exec(cmd);
// put a BufferedReader on the process output
InputStream inputstream =
proc.getInputStream();
InputStreamReader inputstreamreader =
new InputStreamReader(inputstream);
BufferedReader bufferedreader =
new BufferedReader(inputstreamreader);
// read the process output
String line;
while ((line = bufferedreader.readLine())
!= null) {
System.out.println(line);
}
// check for process failure
try {
if (proc.waitFor() != 0) {
System.err.println("exit value = " +
proc.exitValue());
}
}
catch (InterruptedException e) {
System.err.println(e);
}
Diretta Turris Foggia/ Streaming video tv: uno scontro per evitare i
playout! (Serie C, 24 novembre 2024)
-
Diretta Turris Foggia, streaming, video e tv: allo Stadio Amerigo Liguori
ci si affronta per la sedicesima giornata del girone C di Serie C
2024/2025.
Can...
2 ore fa
Nessun commento:
Posta un commento