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