NotesApp – Java File I/O Project
NotesApp is a simple command-line based notes manager built using Java. It allows users to create and store notes in a text file, and later view them anytime.
✨ Features
Add a note and save it permanently in a text file
View all saved notes
User-friendly menu-based system
File handling with Java (FileWriter, FileReader, BufferedReader)
🛠 Tools & Concepts Used
Java Programming
File I/O (read & write operations)
Scanner for user input
Exception handling
🎯 Objective
The project demonstrates how to work with File Handling in Java by building a small, real-world application.
🚀 How It Works
-
The program shows a menu with three options – Add Note, View Notes, Exit.
-
When a note is added, it gets appended to a file named notes.txt.
-
The user can view all previously saved notes anytime.
-
The application runs in a loop until the user chooses to exit.