Apache Commons CLI参数值

时间:2014-08-14 18:00:33

标签: apache-commons-cli

我正在尝试编写一个程序,该程序在执行时 java -jar -cf file.txt 将检索cf参数的值。我到目前为止的代码是:

Options options = new Options();

final Option configFileOption = Option.builder("cf")
                        .longOpt("configfile")
                        .desc("Config file for Genome Store").argName("cf")
                        .build();

options.addOption(configFileOption);

CommandLineParser cmdLineParser = new DefaultParser();
CommandLine commandLineGlobal= cmdLineParser.parse(options, commandLineArguments);

if(commandLineGlobal.hasOption("cf")) {
        System.out.println(commandLineGlobal.getOptionValue("cf"));
    }

我面临的问题是正在打印的值为null。谁能告诉我我错过了什么?

1 个答案:

答案 0 :(得分:6)

找出不起作用的有用方法是打印出commons-cli的帮助信息

    // automatically generate the help statement
    HelpFormatter formatter = new HelpFormatter();
    formatter.printHelp( "sample", options );

打印

usage: sample
 -cf,--configfile   Config file for Genome Store

表示使用longOpt()指定选项的别名,而不是arg-value。做你想做的正确代码是:

    final Option configFileOption = Option.builder("cf")
                            .argName("configfile")
                            .hasArg()
                            .desc("Config file for Genome Store")
                            .build();

正确打印

usage: sample
 -cf <configfile>   Config file for Genome Store

并正确地将传递的参数报告给-cf。

有关详细信息,请参阅javadoc of the Option class