This guide will help you set up and run the Java application on your machine by cloning the repository.
- Ensure you have Java 8 or above installed on your machine.
- Swing was introduced in Java 1.2. However, we recommend using Java 8 or higher for better compatibility and performance.
You can check your installed Java version by running the following command in your terminal:
java -version
If Java is not installed, download it from here.
Here’s an example of the steps to run the Java application:
-
Clone the Repository:
git clone https://github.com/ShubhamPaliwal03/JustNote.git
-
Navigate to the Project Directory:
cd JustNote
-
Compile the Java Files:
javac JustNote.java
-
Run the Application:
java JustNote
- Ensure that Java is correctly installed and available in your system’s
PATH
. - If compilation errors occur, check that all required
.java
files are present and located correctly in thesrc
directory. - For runtime errors, verify that the correct
JustNote
class is being used and its package structure matches your project structure.