import java.io.*;
public class Callexe {
public static void main(String argv[]) {
String fileName = "C:/abc.PFX";
try
{
Runtime.getRuntime().exec("rundll32 SHELL32.DLL,ShellExec_RunDLL \""+fileName);
}
catch (IOException e1)
{ e1.printStackTrace(); }
}
}
|