You are on page 1of 1

To run the java program from a different directory

java -cp directory_name FileName


java -cp ".;java-json.jar;json-simple-1.1.1.jar;mongo-java-driver-2.12.3.jar"
FindBook

Compiling the java file including jar files


javac -cp ".;first.jar;second.jar;third.jar" MyJavaFile.java
javac -cp ".;java-json.jar;json-simple-1.1.1.jar;mongo-java-driver-2.12.3.jar"
FindBook.java

Testing
java -cp ".;java-json.jar;json-simple-1.1.1.jar;mongo-java-driver-2.12.3.jar;bin"
findbook

You might also like