×

Loading...

try it. have fun!

import java.io.*;
import java.util.*;

public class testExec{
public static void main(String args[]){
Runtime rt = Runtime.getRuntime();
try {
rt.exec("notepad.exe");
}catch(Exception e){
System.out.println(e);
}
}
}
Report