Hi !
I heard from a friend that it’s possible to run exe files through the java language.
If that’s true,does anyone know what’s the class for running exe files ?
yes its possible, a simple example
Process p = Runtime.getRuntime().exec("c:\program.exe");
Process p = Runtime.getRuntime().exec("c:\\program.exe");
