InterviewSolution
Saved Bookmarks
| 1. |
Java program to execute any Windows 95 application Like notepad, calculator |
|
Answer» 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); } } } |
|