You can execute a program using the Runtime.exec() methods. Check out the
java.lang.Runtime and java.lang.Process
classes for more information. Basically, it will look like this:
Runtime rt = Runtime.getInstance();
Process process = rt.exec("c:\program.exe argument");