0

プロジェクトに属するパッケージを 1 つだけ含む jar を作成します。このパッケージにはメイン クラスが含まれています。どうすればよいですか?

4

1 に答える 1

1

jar ドキュメントから:

jar cf jar-file input-file(s)

...
* The input-file(s) argument is a space-separated list of one or more files that you want to include in your JAR file. 
The input-file(s) argument can contain the wildcard * symbol. If any of the "input-files" are directories, the contents of those directories are added to the JAR archive recursively.

したがって、パスをパッケージとして指定するだけです。

jar cf <jar file name> com/companyname/package/ 
于 2012-07-14T12:11:28.443 に答える