A notepad with all basic features built using java
- Opening a new or existing file
- Saving a file with save and save as option
- Find text
- Replace and Replace all option
- Close notepad
-
Compile the program
javac Editor.java -
Run the compiled program
java Editor -
You can also make executable jar. First Compile the program with above command then try the command given below.
jar cvfm Editor.jar Manifest.txt *.class
