Get Some Free Products at your Door Step. Just feed ur Address in dis Link...!!

Saturday, March 31, 2012

Run Dos through Java

import java.io.IOException;
public class RunDos
{
public static void runCommand(String command) throws IOException, InterruptedException
{
Process p = Runtime.getRuntime().exec(command);
p.waitFor();
}
}

No comments:

Post a Comment