Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1.22 KB

File metadata and controls

43 lines (29 loc) · 1.22 KB

ToDoListApp

ToDoListApp is a simple command-line-based ToDo list application written in Java. It allows users to add, view, and remove tasks from their ToDo list. The tasks can have a title and a description.

Features

  • Add Task: Users can add new tasks to their ToDo list by providing a title and description.
  • View Tasks: Users can view all the tasks in their ToDo list along with their titles and descriptions.
  • Remove Task: Users can remove tasks from their ToDo list based on the task's title or a unique identifier.
  • Save and Load: The application supports saving and loading the ToDo list to/from a file, allowing users to access their tasks even after closing the application.

Getting Started

Prerequisites

To run this application, you need to have Java installed on your machine.

How to Run

  1. Clone this repository to your local machine using the following command:
git clone https://github.com/sonujana26/ToDoLIstApp.git
  1. Navigate to the project directory:
cd ToDoLIstApp
  1. Compile the Java source files:
javac *.java
  1. Run the application:
java main

Follow the on-screen instructions to interact with the ToDo list application.

Pkg suggested openjdk-17