如何在Eclipse中导入一个jar ?


当前回答

如果你有一个麻烦的udemy课程乍得对进口的罐子。然后按照这些步骤进行。

右键单击项目。 你会看到一个Build Path选项,点击它。 你会有一个选项配置构建路径,点击它。 去图书馆。 然后去你有一个jar文件的地方,把它们放到一个新的文件夹里,上传到一个新的地方。 然后点击Add External Jars,你肯定可以上传它,这也会对classpathxmlapplicationcontext有帮助。

谢谢你!

其他回答

在eclipse中,我包含了一个压缩jar文件,即zip文件。Eclipse允许我将这个压缩文件添加为外部jar,但当我试图访问jar中的类时,它们没有显示出来。

经过大量的尝试和错误,我发现使用zip格式是行不通的。当我添加一个jar文件时,它为我工作了。

系统路径下的Jar文件为:

C: \ oraclexe app \ oracle产品10。2。0 \ server \ jdbc lib \ ojdbc14。jar

Ojdbc14.jar (jar文件)

要在Eclipse IDE中导入jar文件,请遵循以下步骤。

右键单击项目 选择生成路径 单击Configure Build Path 单击Libraries,选择Modulepath,然后选择Add External jar 从所需的文件夹中选择jar文件 单击“应用”和“确定”

两个选择:

1/来自项目:

2/如果你已经导入了其他jar,从“References Libraries”目录:

两者都会引导你进入这个屏幕,在这里你可以管理你的库:

如果您想要更改文件系统中的项目位置,那么添加外部Jar并不明智。

最好的方法是添加jar到构建路径,这样你的项目将在导出时编译:

在项目文件夹中创建一个名为lib的文件夹。 将您需要的所有jar文件复制到此文件夹。 在eclipse中刷新您的项目。 选择所有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.