This should be rather simple, but I don\'t see anything helpful in JavaDocs.
What I need is to run some external process from my Java code and then be able to monito
Based on the question's specific code snippet I might be useful to add that since 1.8 the Process class has an isAlive() method is available
Process
isAlive()
Documentation link: https://docs.oracle.com/javase/8/docs/api/java/lang/Process.html
good luck to anyone reading this!