Questions tagged [external-process]

167 questions
-2
votes
2 answers

how can I launch an external process like ping from a java applet and capture the output?

In a standard java program I am able to do the following: import java.io.*; public class PingApp { public static void main(String args[]) { System.out.println("about to try to launch ping..."); try { …
tadasajon
  • 14,276
  • 29
  • 92
  • 144
-3
votes
1 answer

Python 3.6: How to spawn multiple external exe instances from function(generator) in multiprocess

How to spawn multiple parallel external exe instances from function(generator) for x1 in x: in multiprocessing manner(to keep always one exec running per cpu thread)? If there is no method to do it in current pseudo code below, then what other…
1 2 3
11
12