import java.io.IOException;
/**
*
* @author Aravind Sankaran
*/
public class OpenCommandPrompt{
public static void main(String[] abc) {
try {
Runtime.getRuntime().exec("cmd /c start ");
}
catch (IOException e) {
System.out.println(e);
}
}
}
/**
*
* @author Aravind Sankaran
*/
public class OpenCommandPrompt{
public static void main(String[] abc) {
try {
Runtime.getRuntime().exec("cmd /c start ");
}
catch (IOException e) {
System.out.println(e);
}
}
}
No comments:
Post a Comment