--> Java File I/O – Notes App. A simple console-based Java File I/O built in java Objective: Create a text-based notes manager with file read/write. --> create a folder and file in vs code as follows notes-app/ ├── src/ │ └── NotesApp.java --> open cmd and Compile the Java code:javac src/NotesApp.java, Run the application:java -cp src NotesApp --> Usage- Run the app and choose options from the menu: 1. Add note 2. View notes 3. Delete note (by number) 4. Clear all notes 5. Exit -->Error Handling- Handles IOException for file operations .
- Validates user inputs for note operations.