how to create jar file in eclipse

What is JAR file?

JAR stands for the Java ARchive. Before discussing on JAR files let us discuss about ZIP file first. A ZIP file is file format which can store one or more files in the compressed format. ZIP files are most commonly used formats. JAR is also a compressed file format which normally contains the java class files (.class files) and a manifest file (metadata). Sometimes it may contain java source code files (.java files), images etc. For better understanding JAR files are ends with the .jar extension.

How to create JAR file in eclipse?

Let us discuss it with an example. We are creating a java project which contain one class ArmstrongNumber.java. The ArmstrongNumber.java contains one static method armstrong(int num) which returns true if the num is an armstrong number otherwise returns false. We will create the JAR file of this and use JAR file in other project.

Step 1: Right click on the project and click on Export.

CreateJar1

Step 2: Select the JAR file and click on Next.

CreateJar2

Step 3: Enter the destination and click on Finish.

CreateJar3

Now the JAR is created on the destination folder.

Download ArmstrongJar.jar

Test the created jar:

We are creating a new java project ArmstrongJarTest which contains one class ArmstrongTest.java. Add the ArmstrongJar.jar into the project class path and then use the armstrong(int num) method to check whether the no. is armstrong or not.

Example:

ArmstrongTest.java

import com.w3spoint.business.ArmstrongNumber;
 
/**
 * This class is used to test the custom jar.
 * @author w3spoint
 */
public class ArmstrongTest {
  public static void main(String args[]){
    //Use the static method from the jar file to check whether the
    //no. is armstrong or not.
    boolean isArmStrong = ArmstrongNumber.armstrong(407);
      if(isArmStrong){
	  System.out.println("Given number is an armstrong number.");
      }else{
	  System.out.println("Given number is not an armstrong number.");
      }
    }
}

Output:

Given number is an armstrong number.

Download this example.

Related Topics:

How to build java project using ant in eclipse?
JAXB marshalling – convert java object to xml example.
How to create pdf file in java using iText jar?
Generics class example.
OGNL in struts 2.
Hibernate One-to-One Mapping using xml.
Send inline image in email using JavaMail API.
Quartz 2 JobListener example.

 

Please follow and like us:
Content Protection by DMCA.com