Skip navigation links
  • Package
  • Class
  • Use
  • Tree
  • Index
  • Help
  • GitHub
  • Get Package
SEARCH


This project has implementation of LinkedList in java you can store dynamic data types in this list
How to use
fist download the jar file from releases

Releases

Then copy the location of this download jar file ex.

D:\study\java projects\OOPJ_MP\LinkedListProject.jar

Then There is two option to Use this package

1: By ClassPath Environment Variable

add this jar file path to yous CLASSPATH variable This Command set the class path for only this command prompt

NOTE: Use Command Prompt Note Windows Powershell

set 'CLASSPATH=D:\study\java projects\OOPJ_MP\LinkedListProject.jar;OTHER\PATH'

2: By Command

javac -cp 'D:\study\java projects\OOPJ_MP\LinkedListProject.jar;OTHER\PATH' yourjavafile.java
java -cp 'D:\study\java projects\OOPJ_MP\LinkedListProject.jar;OTHER\PATH' yourclassname

NOTE: you have to add the path also in which your class file is place after compilation