如何创建带有执行选项的jar文件,例如,想法是执行命令:
java -jar MyProgram.jar -M someFile.txt
要么
java -jar MyProgram.jar -cp someFile.txt
因此-M选项定义了处理文件someFile.txt的特定方法,并且-cp定义了代码的另一种行为。
有了这个,我怎么能从我的代码中得到这个结果,我需要在Main类中编写一些东西,或者我如何定义这样的行为?
我想你可能需要检查Apache Commons-CLI,它允许你做你上面描述的事情,我也举例说明它是如何工作的,它给出了为参数用法指定消息的方法:
https://commons.apache.org/proper/commons-cli/introduction.html
Options options = new Options();
options.addOption( "M", false,"Merge files request.")
.addOption("CP", false,"Copy files from file.");
CommandLineParser parser = new DefaultParser();
try {
CommandLine cmd = parser.parse(options, args);
if (!cmd.hasOption("M")) {
throw new IllegalArgumentException("Must specify an input file.");
}
// Do something
if (!cmd.hasOption("CP")) {
throw new IllegalArgumentException("Must specify an input file.");
}
// Do something
catch (Exception e) {
System.out.println(e.getMEssage());
}
看看this example。
基本上你的主要方法中的args
public static void main(String[] args) { ... }
args =你在java -jar MyJar.jar
之后放置的参数,例如-cp someFile.txt
作为String []:{"-cp", "someFile.txt"}