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 -jar File.jar username password
フィールド「username」および「password」は、java -jar File.jar コマンドの実行中にユーザーによって渡されます。
どうやってするか?
File.jar のどこかにpublic static void main(String[] args).
public static void main(String[] args)
次のコマンドを実行すると、次のjava -jar File.jar username passwordような入力パラメーターをキャッチできます。
public static void main(String[] args) { String username = args[0]; String password = args[1]; ... }