如果你只是学习java,这个建议可能会有些挑战,但你最好使用maven来构建你的项目,这需要重新组织你的源文件和目录。然后使用程序集插件创建一个包含所有依赖项的 zip。然后运行您的程序,您只需执行以下操作:
unzip myapp.zip
cd myapp
java -cp "lib/*" com.blah.MyApp
(您可能需要调整 /* 部分的语法,使用单引号或删除引号,具体取决于您的 shell)
这是汇编插件的一个片段(通用......除了版本和遵循约定的路径之外没有任何硬编码)。这在 pom.xml 中:
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2</version>
<configuration>
<descriptors>
<descriptor>src/main/assembly/distribution.xml</descriptor>
</descriptors>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<!-- this is used for inheritance merges -->
<phase>package</phase>
<!-- append to the packaging phase. -->
<goals>
<goal>single</goal>
<!-- goals == mojos -->
</goals>
</execution>
</executions>
</plugin>
这是一个示例程序集文件(相对于 pom.xml,它位于 src/main/assembly/distribution.xml 中):
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"
>
<id>${artifact.version}</id>
<formats>
<format>zip</format>
</formats>
<files>
<file>
<!-- an example script instead of using "java -cp ..." each time -->
<source>${project.basedir}/src/main/bin/run.sh</source>
<outputDirectory>.</outputDirectory>
<destName>run.sh</destName>
<fileMode>0754</fileMode>
</file>
</files>
<fileSets>
<fileSet>
<directory>${project.basedir}/src/main/resources/</directory>
<outputDirectory>/res/</outputDirectory>
<includes>
<!-- just examples... -->
<include>*.sql</include>
<include>*.properties</include>
</includes>
</fileSet>
<fileSet>
<directory>config/</directory>
<outputDirectory>/config/</outputDirectory>
</fileSet>
</fileSets>
<dependencySets>
<dependencySet>
<outputDirectory>/lib</outputDirectory>
<excludes>
<!-- add redundant/useless files here -->
</excludes>
</dependencySet>
</dependencySets>
</assembly>
此外,eclipse 在 gui 中有一个“jar packager”实用程序,但几年前我使用它时发现它不是很好。而且我认为它不处理依赖项,因此您需要使用上面的“-cp”参数,并添加所有 jar,或者自己将它们放入您的 lib 目录中。
还有这个http://fjep.sourceforge.net/但我从未使用过它....我现在在快速查找 eclipse jar 打包器时才找到它。在他的教程中,他的最后一行(显示正在运行)如下所示:
> java -jar demorun_fat.jar
Hello