I want to execute a exe in java.like in VB we have shell("calc.exe") ,which executes calc ,I will be waiting for your reply
Get an instance of Runtime, then call appropriate execute method.for eg.Runtime rt = Runtime.getRuntime ();Process process = rt.exec ( input );
Runtime.getRuntime().exec("bla bla");