How to open an external program?

edited December 2015 in How To...

Hi, how do you open an external program with processing. On older question, i saw that you had to use the open 'command', but this doesn't work anymore. I want to do it in Java.

Thanks

Answers

  • Well, me being stupid and not thinking that you can open an external program with java. I got it working now.

    Solution: Runtime rt = Runtime.getRuntime(); rt.exec("notepad");

    I just used this, and it is working.

  • interesting!

Sign In or Register to comment.