import java.util.*; import java.io.*; class Notepad { public static void main(String[] args) { Runtime rs = Runtime.getRuntime(); try { rs.exec("notepad"); } catch (IOException e) { System.out.println(e); } } }
Post a Comment
No comments:
Post a Comment