Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.io.*;
- class OpenNotepad{
- public static void main(String args[]){
- try{
- Runtime.getRuntime().exec("notepad.exe");
- } catch (IOException e){
- System.out.println("Error.");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement