我正在尝试在项目中添加一些外部jar文件。 有谁告诉我如何将外部jar文件添加到当前项目?在此先感谢。
答案 0 :(得分:2)
以下是如何做到这一点,
1。)Right click on your Project->Properties->Java Build Path->Libraries->Add External JARS...
2.。)您可以在Project文件夹中创建lib
文件夹并复制该文件夹中的JAR文件,然后
right click the JAR file from the eclipse Package explorer -> Build Path-> Add to Build Path
答案 1 :(得分:0)
在eclipse中右键单击您的项目 - > properties-> java构建路径 - >库选项卡
答案 2 :(得分:0)
如果您使用的是Eclipse,请查看手册:http://help.eclipse.org/galileo/index.jsp?topic=/org.eclipse.jdt.doc.user/reference/ref-properties-build-path.htm:
[..]项目属性(项目>属性> Java构建路径)
然后点击“添加外部JAR ”。
如果您使用的是IntelliJ,请查看以下StackOverflow问题:how to add directory to classpath in an application run profile in intellij idea?和how to add a jar to my lib/ directory in intelliJ and have the classes available for my web.xml?。
答案 3 :(得分:0)
请按照以下步骤操作: 右键单击项目
打开项目属性 - > java构建路径 - >库 - >添加外部jar
你的jar文件的路径
希望这会对你有所帮助....