This is a native Java implementation of a lightweight Notepad application. It features a simple yet functional graphical user interface (GUI) built using Swing
, allowing users to create, edit, save, and open text files.
Click the image above to watch the video demo.
- Java Development Kit (JDK) installed (version 8 or higher)
- Git installed
- Open your terminal and clone the repository:
git clone https://github.com/Omid2831/NotePad.git
- Navigate into the project directory:
cd NotePad
- Compile the source files and place the compiled classes in the
bin
directory:
javac -d bin *.java
- Run the program:
java -cp bin Notepad.java
📂 Notepad-App ├── src/ │ └── main/ │ └── java/ │ └── Notepad.java # Notepad functionality implementation ├── 📂 capture │ ├── NoteVid.mp4 # Video demo of the application │ └── Pic.png # Screenshot of the application └── README.md # Documentation file for the project