本文介绍了如何在执行时将参数传递给jar文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在执行时将参数传递给JAR文件?

How do I pass parameters to a JAR file at the time of execution?

推荐答案

要将参数传递给jar:

To pass arguments to the jar:

java -jar myjar.jar one two

您可以在Main-Class的main()方法中访问它们(在 manifest.mf 文件中提到罐)。

You can access them in the main() method of "Main-Class" (mentioned in the manifest.mf file of a JAR).

String one = args[0];  
String two = args[1];  

这篇关于如何在执行时将参数传递给jar文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 06:09