Search code examples
javapopen

Java: popen()-like function?


This is in the context of a local Processing program. I would like to run an external program to get some data. Is there a popen() or equivalent function I can use?


Solution

  • Process process = Runtime.getRuntime().exec("your command");
    

    Then you can read and write the data using the Process streams.