`
archerboy
  • 浏览: 27340 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

如何加外部jar

阅读更多

http://www.wonderhowto.com/how-to-add-jars-project-build-paths-eclipse-java-088654/

Adding External JARs

Note: It is much better to reference jars that exist in your project or in other projects - this allows you to check in all of your dependencies to your version control system. (You are using version control, right?)

Use one of the following methods.

 

Method 1

This is the preferred method, as it allows different developers of a common project to locate their external jars in different places.

  1. Right click the project name and navigate to Build Path.
  2. Select Configure Build Path... and the project properties window will appear showing your build path configurations.
  3. Click Add Variable...
  4. Click Configure Variables...
  5. Click New...
  6. Type a name for the new variable. For example, if these are jars for Tomcat, perhaps call it TOMCAT_JARS
  7. Browse to the directory that contains the jar for the path. (You can also select a specific jar file for the variable, if you prefer.)
  8. Click Ok to define the variable
  9. Click Ok to close the preferences dialog
  10. Select the variable from the list
  11. Click Extend...
  12. Select the jar(s) that you want to add to the classpath
  13. Click Ok to close the extend dialog
  14. Click Ok to close the new classpath variable dialog
  15. Click Ok to close the build path setup dialog

If you share the project with someone else, they must also define the variable. They can define it under Window->Preferences->Java->Build Path->Classpath Variables

 

Method 2

Note that if you use this method, the external jar will need to be in the same location on the hard drive for anyone who uses this project. This can make sharing a common project more difficult.

  1. Right click the project name and navigate to Build Path.
  2. How To Add JARs to Project Build Paths in Eclipse (Java)Select Add External Archives... 
  3. Locate and select the JARs you want and click Open. The JARs will now appear in Referenced Libraries.

 

Method 3

Note that if you use this method, the external jar will need to be in the same location on the hard drive for anyone who uses this project. This can make sharing a common project more difficult.

  1. Right click the project name and navigate to Build Path.
  2. Select Configure Build Path... and the project properties window will appear showing your build path configurations.
  3. Select the Libraries tab.
  4. Click Add External JARs...
  5. How To Add JARs to Project Build Paths in Eclipse (Java)Locate and select the JARs you want and click Open. The JARs will now appear in the list of libraries in the build path.  
  6. Click OK to close the properties window. The JARs will now be in Referenced Libraries.


See more: How To Add JARs to Project Build Paths in Eclipse - Java | Guide « Wonder How To http://www.wonderhowto.com/how-to-add-jars-project-build-paths-eclipse-java-088654/#ixzz1GoZJrm99
分享到:
评论

相关推荐

    fatjar(java包含外部jar)

    fatjar(java包含外部jar)fatjar(java包含外部jar)fatjar(java包含外部jar)fatjar(java包含外部jar)fatjar(java包含外部jar)fatjar(java包含外部jar)fatjar(java包含外部jar)fatjar(java包含外部jar)fatjar(java包含...

    关于执行java命令引入外部jar包方法

    在Java开发环境中,引入外部JAR包是常见且必要的操作,尤其当项目依赖于特定库或框架时。本文将深入探讨如何通过Java命令行来引入并执行包含外部JAR包的程序,以此来理解其机制与操作流程。 ### 一、理解JAR包 JAR...

    Eclipse打包成JAR包读取外部JAR包和外部配置文件

    本文将详细介绍如何在Eclipse中将项目打包成JAR文件,并确保能正确引用外部JAR包和读取外部配置文件。 首先,我们来看如何打包项目为JAR。在Eclipse中,选择`Export` -> `Java` -> `Runnable JAR file`。在弹出的...

    intellij idea 12导入外部jar包详解

    intellij idea 12导入外部jar包详解 Intellij Idea 12是一款功能强大且广泛应用的集成开发环境(IDE),它提供了许多便捷的功能来帮助开发者快速高效地开发和调试软件。其中,导入外部jar包是Intellij Idea 12中的...

    java调用外部jar文件

    下面将详细介绍如何在Java程序中调用外部jar文件。 首先,了解Java类加载器的工作原理是必要的。默认情况下,Java的系统类加载器会从类路径(CLASSPATH)中加载类,包括JRE自身的库、应用的主类路径以及任何用户...

    JavaEE外部jar文件

    javaEE的一些jar包有antlr.jar standard.jar asm.jar aspectjweaver.jar commons-beanutils.jar commons-digester.jar log4j-1.2.15 struts.jar strutstest-2.1.0.jar 等

    hadoop的外部依赖jar包

    有时候在eclipse上运行项目,需要引用的Hadoop的jar包,也就是hadoop的外部依赖包,有conf,fs,io,mapreduce等等,这里列举了一部分,基本上hadoop的所有外部依赖jar包都包含在内了,如果下载了不会使用,可以看我...

    java 反射运行时加载外部jar到Tomcat StandardClassLoader1

    在上述描述中,我们看到一个具体的场景,即如何在 Tomcat 应用服务器中使用反射加载外部的 JAR 文件到 `StandardClassLoader`。 首先,了解 `StandardClassLoader` 的角色。在 Tomcat 中,`StandardClassLoader` 是...

    Eclipse打包成JAR包读取外部JAR包和外部配置文件(源码)

    下面我们将详细探讨如何在Eclipse中打包JAR包,并读取外部JAR包和外部配置文件。 首先,我们需要了解JAR文件的结构。JAR文件是Java类文件和相关资源的容器,它们被组织成目录结构,类似于Unix或Windows的文件系统。...

    cxf外部调用jar

    当我们谈论“cxf外部调用jar”,这通常是指一组特定的库文件,这些文件包含了CXF框架执行对外部服务调用所必需的功能。 CXF的核心功能在于它允许应用作为Web服务提供者或消费者。作为提供者,它可以将Java接口和...

    定义ClassLoader调用外部jar包

    当我们需要从外部jar包动态加载类时,自定义ClassLoader就显得尤为关键。这篇博文"定义ClassLoader调用外部jar包"探讨了如何创建一个自定义的ClassLoader,以便能够灵活地加载不在应用主类路径(ClassPath)中的jar...

    zeppelin外部jar包

    在Apache Zeppelin中,外部JAR包的管理是至关重要的,因为这允许用户引入自定义库或依赖项,以便在Zeppelin笔记本中执行特定的Java、Scala或Spark代码。标题和描述都提到了"zeppelin外部jar包",这意味着我们将讨论...

    android引入外部jar包.doc

    下面我们将详细讨论如何正确地引入外部jar包以及解决此类冲突。 首先,让我们了解引入外部jar包的基本步骤: 1. 创建或定位到项目的`libs`目录。如果项目中还没有这个目录,你需要手动创建一个名为`libs`的文件夹...

    java动态添加外部jar包到classpath的实例详解

    "java动态添加外部jar包到classpath的实例详解" Java 动态添加外部jar包到classpath是指在Java应用程序中动态地加载外部jar包到classpath中,以便在不重新启动服务器的情况下使用最新的代码。这项技术在项目开发...

    在可执行jar中载入第三方jar的几个解决方法

    2. **自定义类加载器**:创建自己的类加载器,该加载器可以读取并加载外部JAR中的类。这样,即使在`-jar`模式下,也可以通过自定义加载逻辑找到并加载所需的类。注意,这需要对类加载机制有深入的理解,以确保正确...

    外部Jar包加载到可执行Jar或War包相关代码

    标题和描述所提及的“外部Jar包加载到可执行Jar或War包相关代码”涉及的核心知识点是Java的类加载机制以及如何自定义类加载器。以下是对这些概念的详细解释: 1. **Java类加载机制**: Java的类加载机制分为三个...

    动态加载jar包

    动态加载jar包是一种在程序运行时按需引入外部库或者组件的技术,这使得应用程序更加灵活,可以适应不同的环境和需求。这种技术广泛应用于插件系统、框架开发以及服务升级等场景,因为它允许程序在不重启的情况下...

    将多个jar包合并为一个jar包

    在Java开发中,尤其是Android项目,经常会遇到需要整合多个外部依赖库的情况,这些库通常以JAR(Java Archive)文件的形式存在。为了简化项目结构、减少资源占用以及方便管理,开发者有时会选择将多个JAR包合并成一...

    SpringBoot使用Maven打包异常-引入外部jar的问题及解决方案

    "SpringBoot使用Maven打包异常-引入外部jar的问题及解决方案" 本文主要介绍了SpringBoot使用Maven打包异常-引入外部jar的问题,并提供了相应的解决方案。下面是对标题、描述、标签和部分内容的详细解释: 标题:...

    flink安装所需要的第三方jar

    标题中的“flink安装所需要的第三方jar”指的是在部署和运行Apache Flink项目时,除了Flink自身的基础库之外,可能还需要依赖的一些外部JAR包。这些JAR包通常包含了Flink与其它系统的交互所需的组件,比如Hadoop。在...

Global site tag (gtag.js) - Google Analytics