java program to execute any Windows 95 application Like notepad, calculator
Answers
Answered by
2
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);
}
}
}
Similar questions
Business Studies,
27 days ago
Math,
27 days ago
Biology,
1 month ago
English,
9 months ago
Science,
9 months ago