run any exe file using java code ...if u face any problem contact me 9434226403
//this code will open notepad.exe ...if u face any problem contact 9434226403
import java.io.*;
class csk
{
public static void main(String args[])throws IOException
{
Runtime r=Runtime.getRuntime();
r.exec("notepad.exe");
}
}
No comments:
Post a Comment