Make sure the program you want to start is available locally. PATH-Settings are not used!
=============================================
public class ExecProgram
{
public static void main(String args[])
{
try
> {
Process p = Runtime.getRuntime().exec(args[0]);
}
catch (Exception ex)
{
System.err.println(ex.getMessage());
}
}
}