h1

Loading applications

April 15, 2008

Test strip:
public class testopen
{
public static void main(String[] args) throws Exception
{
Runtime rt = Runtime.getRuntime();
Process p = rt.getRuntime().exec(“c:\\windows\\system32\\notepad.exe”);
p.waitFor();
}
}

//spaces in the path MAY need extra quotations.

Leave a Comment