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.
*.class ファイルを生成したディレクトリがあります。このファイルから実行可能なjarファイルを作成するにはどうすればよいですか。
私が知る必要があるのは
申し訳ありませんが、私が言及しなかった人々は、Javaコードでプログラムでこれを行う必要があります。
java cfe myJar.jar Classname.class myClass
そして実行のために
java -jar Jarname.jar
Jarの作成
Eclipse や Netbeans などの IDE を使用している場合は、特定の簡単な方法があります。そうでない場合は、次のコマンドが機能すると思います。 jar cfe <jar-file> <main-class-name> <class-files...>
jar cfe <jar-file> <main-class-name> <class-files...>