Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to import a jar in Eclipse?

share|improve this question
also above stated figure show the answer – sagar Jul 20 '10 at 10:48

closed as not a real question by Harry Joy, KingCrunch, onof, Monolo, Clyde Lobo Aug 31 '12 at 9:30

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

6 Answers

up vote 51 down vote accepted

You can add a jar in eclipse by right clicking on the Project --> Build Path --> Configure Build Path. Under Libraries tab, click Add Jars or Add External JARs and give the Jar.

share|improve this answer
2  
I think it should be : `Add External JARs" – hqt Aug 16 '12 at 18:36
For me it's 'Add External Archives'. – Steven Jeuris Nov 23 '12 at 13:46

Two choices:

1/ From the project:

alt text

2/ If you have already other jar imported, from the directory "References Libraries":

alt text

Both will lead you to this screen where you can mange your libraries:

alt text

share|improve this answer
1  
gud screen shots. – Siten Jun 20 '11 at 11:40
Add Jar vs Add External Jar what's the differnce? – Pacerier Jan 15 '12 at 12:37
1  
@Pacerier "Add jars" is referring to jars directly accessible from within your workspace. Their path is relative to a project from your workspace, instead of an absolute path. "Add External Jars" is for jars stored anywhere else (on your hard drive or on the LAN/WAN), and uses an absolute path. – VonC Jan 15 '12 at 15:44
@VonC ok thanks for the help! – Pacerier Jan 15 '12 at 16:17

Here are the steps:
1. click File > Import. The Import window opens.
2. Under Select an import source, click J2EE > App Client JAR file.
3. Click Next.
4. In the Application Client file field, enter the location and name of the application client JAR file that you want to import. You can click the Browse button to select the JAR file from the file system.
5. In the Application Client project field, type a new project name or select an application client project from the drop-down list. If you type a new name in this field, the application client project will be created based on the version of the application client JAR file, and it will use the default location.
6. In the Target runtime drop-down list, select the application server that you want to target for your development. This selection affects the run time settings by modifying the class path entries for the project.
7. If you want to add the new module to an enterprise application project, select the Add project to an EAR check box and then select an existing enterprise application project from the list or create a new one by clicking New.
Note: If you type a new enterprise application project name, the enterprise application project will be created in the default location with the lowest compatible J2EE version based on the version of the project being created. If you want to specify a different version or a different location for the enterprise application, you must use the New Enterprise Application Project wizard.
8. Click Finish to import the application client JAR file.

share|improve this answer

Just a comment on importing jars into Eclipse (plug-in development) projects:

In case you are developing Eclipse plug-ins, it makes sense to use Eclipse's native bundling mechanism instead of just importing the jar into a plug-in project. Eclipse (or better its underlying OSGi runtime, Equinox) uses so-called bundles which contain some more information than plain jars (e.g., version infos, dependencies to other bundles, exported packages; see the MANIFEST.MF file). Because of this information, OSGi bundles can be dynamically loaded/unloaded and there is automatic dependency resolution available in an OSGi/Eclipse runtime. Hence, using OSGi bundles instead of plain jars (contained inside another OSGi bundle) has some advantages.

(BTW: Eclipse plug-ins are the same thing as OSGi bundles.)

There is a good chance that somebody already bundled a certain (3rd party) library as an OSGi bundle. You might want to take a look at the following bundle repositories:

share|improve this answer

simply go to project name and import jar files or other frameworks also u can add by right clicking on project folder and external links

share|improve this answer

goto file then import then java build path brows jar and ok

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.