How can I run a .exe from my Java Program? [duplicate]

U can use the following code………

Runtime rt = Rintime.getRuntime() ;     
Process p => rt.exec("Program.exe") ;     

Leave a Comment