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
其中“用户名”和“密码”字段将由用户在执行 java -jar File.jar 命令时传递。
怎么做?
在您的 File.jar 中,您有一个 .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]; ... }