How to import a jar in Eclipse?
|
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.
|
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.
|
|||||||
|
|
Two choices: 1/ From the project:
2/ If you have already other jar imported, from the directory "References Libraries":
Both will lead you to this screen where you can mange your libraries:
|
|||||||||||||
|
|
Here are the steps: |
|||
|
|
|
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: |
||||
|
|
|
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 |
||||
|
|




