This program will help you to call any exe from java program
import java.io.*;
public class LoadExe{
public void RunTest()
{
Runtime r=Runtime.getRu ntime();
Process p=null;
try
{
String s="c:\\windows\ \explorer.exe";
p=r.exec(s);
}
catch(Exception e){
System.out.prin tln("error==="+ e.getMessage()) ;...
Leave a comment: