Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在导出项目之前将外部 jar 添加到我的项目中,以便即将使用我的代码的人不必下载这些 jar。他只需引用我提供的 jar 即可运行我的项目(不使用 Maven)。谢谢
您可能希望创建一个包含 your_jar.jar 子目录 lib 中所需库的 zip 文件,并添加一个 manifest-classpath 条目以指向这些库
Manifest-Version: 1.0 Created-By: Hand Main-Class: com.bitplan.gen.parser.m2java Class-Path: lib/com.bitplan.smartgenerator-4.2.3.jar
解压后你的代码可以用 java -jar your_jar.jar 启动