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.
これらの .java ファイルがあるとしましょう:
次に、それらを .class ファイルに変換します。
それをjarファイルにして、MainClass.classを最初にロードするにはどうすればよいですか?
エリオットがクラスファイルについて言ったことを観察すると、(最近のバージョンのjarで)マニフェストを暗黙的に作成できます
jar cvfe m.jar MainClass *.class
これは、MainClass が既定のパッケージ (「パッケージなし」) にあることを前提としています (お勧めできません)。それは次に実行されます
java -jar m.jar