To run an external program using Java you need to use
the getruntime method. Its like using the shell method in VB.
In the example below the program will launch Netscape.
=========================================================
try{
Runtime r = Runtime.getRuntime();
r.exec("C:\\Program Files\\Netscape\\Communicator\\Program\\netscape.exe");
}catch(Exception ex)
{
System.out.println("Error in executing program");
}