This is a simple text-based Notes Manager built using Java File I/O.
It allows users to:
- β Add notes
- π View saved notes
- β Exit the program
Notes are stored in a text file (notes.txt) using FileWriter and retrieved using FileReader/BufferedReader.
- Java
- VS Code / Any IDE
- Terminal / Command Prompt
- Save notes (append mode so old notes are not erased).
- Read all saved notes.
- Exception handling with try-with-resources.
- Menu-driven console app.
- FileWriter (append & overwrite)
- FileReader & BufferedReader
- Exception handling (IOException, FileNotFoundException)
- Try-with-resources
- File persistence
- Clone this repository
git clone https://github.com/your-username/notes-app-java.git cd notes-app-java