Sunday 24 April 2016

Creation of JAR file using Java

Hello Fellas,

today I'm sharing my learning how to create a JAR file in Java.


  • Create a Sample Java file. ex: Test.java
  • Create a Menifest file with extension MF ex: MenifestTest.mf
  • edit the Menifest File 
      • Main-Class: Test // this should be class file which contains the Main Class
      • Menifest file should end with the new line separator 



  • Create a jar using the following cmd
      • jar -cvmf MenifestTest.mf NameOfTheJar.jar IncludedClassFiles
        Creation of Jar

        Using Jar


        Thank You :)















A Guide to Installing Oracle HR Schema on an Existing Docker Container

  Hi Reader, Today I want to share my learning on how to install Oracle HR schema on a existing docker container. Step 1: Download the verif...