tags:

views:

246

answers:

1

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?

+4  A: 
Process process = Runtime.getRuntime().exec("your command");

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

Bozho
just what I needed... thanks!
Mark Harrison