如何在Eclipse中导入一个jar ?
当前回答
右键单击项目。 单击Build Path。 单击“配置生成路径”。 在Libraries下面,单击Add Jar或Add External Jar。
其他回答
两个选择:
1/来自项目:
2/如果你已经导入了其他jar,从“References Libraries”目录:
两者都会引导你进入这个屏幕,在这里你可以管理你的库:
右键单击项目。 单击Build Path。 单击“配置生成路径”。 在Libraries下面,单击Add Jar或Add External Jar。
以下是步骤:
click File > Import. The Import window opens. Under Select an import source, click J2EE > App Client JAR file. Click Next. 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. 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. 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. 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. Click Finish to import the application client JAR file.
Eclipse ->首选项-> Java ->构建路径->用户库->新建(命名它)->添加外部jar
(我建议在这些步骤之前将您的新库拖到eclipse文件夹中,以保持所有内容在一起,这样如果您重新安装eclipse或您的操作系统,您就不需要rwlink除JDK以外的任何内容)现在选择您想要的jar文件。单击OK。
右键单击项目并选择生成路径->添加库
供参考,只是代码,然后右键单击和来源->组织导入
如果您想要更改文件系统中的项目位置,那么添加外部Jar并不明智。
最好的方法是添加jar到构建路径,这样你的项目将在导出时编译:
在项目文件夹中创建一个名为lib的文件夹。 将您需要的所有jar文件复制到此文件夹。 在eclipse中刷新您的项目。 选择所有jar文件,然后右键单击其中一个文件,选择构建路径->添加到构建路径
推荐文章
- 字符串是不可变的。到底是什么意思呢?
- Java GUI框架。选择什么?Swing, SWT, AWT, SwingX, JGoodies, JavaFX, Apache Pivot?
- 在Java中从字符串中提取数字
- 套接字的连接超时和读超时之间的区别是什么?
- Java整数到字节数组
- 如何设置Windows环境下Java的环境变量
- Java Swing revalidate() vs repaint()
- Java中文件中的行数
- 指定的子节点已经有一个父节点。你必须先在子对象的父对象上调用removeView() (Android)
- 对于一个布尔字段,它的getter/setter的命名约定是什么?
- 如何更改Eclipse中的默认文本文件编码?
- 如何获得当前屏幕方向?
- 如何在Android中渲染PDF文件
- 如何计算一个元素在列表中出现的次数
- c++中类似于java的instanceof