将Java项目导出为.jar,其中包括.java源代码,并保留外部库依赖项 [英] Exporting a Java Project as .jar with including .java source code and preserving external libraries dependecies

查看:32
本文介绍了将Java项目导出为.jar,其中包括.java源代码,并保留外部库依赖项的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道如何将Java项目导出为也包括.java源代码的.jar(只需将其导出为纯.jar),以及如何将其导出为仅包含.class文件的可运行.jar(仅导出为.jar文件即可)选择可运行的.jar导出样式).如果该项目不依赖于外部库,我会注意到两个.jar都可以通过命令行正确运行.

I know how to export a Java Project as a .jar including also .java source code (just export it as a plain .jar), and how how to export it as a runnable .jar including only .class files (just select the runnable .jar export style). If the project doesn't have dependecies on external libraries, I noticed that both .jar run correctly by command line.

问题:如果项目包含对构建路径"中添加的某些外部库的依赖,则会导致导出为可运行的.jar可以正常运行,而普通的.jar则无法运行,因为从该库启动时找不到外部库命令行.

Problem: if the project contains dependecies on some external library added in the Build Path, it results that the .jar exported as runnable correctly works while a plain .jar doesn't because the external libraries are not anymore found when launching from command line.

注释:外部库以.jar的形式添加到项目中的"lib"文件夹中,并从那里添加到构建路径"中.

Annotation: external libraries are added as .jar in a folder "lib" in the project and from there added to the Build Path.

我希望能够导出Java项目,同时包括.java源代码并保留对外部库的依赖关系,以便在通过命令行启动它时可以运行它.有什么建议吗?我所能找到的只是将其导出为可运行的.jar",但这将隐藏.java源代码.

I want to be able to export the Java project while either including the .java source code and preserving the dependencies on external libraries so that it will run when launching it by command line. Any suggestion? All that I can find out is "just export it as runnable .jar", but this will hide the .java source codes.

编辑:有人可以解释为什么会发生这种情况吗?

Can anyone explain why this happens?

推荐答案

如果您不需要自动化的方法,则可以通过以下手动步骤来实现:

If you don't need an automated way you can achieve it with following manual steps:

  • 首先将其导出为可运行的jar(a.jar)
  • 第二次导出为带有源(b.jar)的jar
  • 使用7-zip或其他存档工具将源集成到可运行的jar中.打开两个jar并将包含源(包名称的第一部分)的文件夹从jar(b.jar)拖到可运行jar(a.jar)的z-zip窗口中

这篇关于将Java项目导出为.jar,其中包括.java源代码,并保留外部库依赖项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆