How to run an exe file using java code?The .exe file is already there. The plan is to write a Java code for running the same. Any tutorial or reference for the same?
Runtime rt = Runtime.getRuntime(); Process proc = rt.exec("javac");