What is the best way to read the result (i.e. via System.out.println) of a Java application that is called from Python using
subprocess.Popen("java MyClass", shell=True)
without writing and reading a file? (Using Jython etc. is not a possible solution)
source share