18

如果我根据需要定义了 2 个选项,例如:

 public static void main(String [] args){
      Options options= new Options();
      Option  inputFileOp=Option.builder("i").longOpt("input").hasArg().desc("Input file").argName("file").required().build();
        options.addOption(inputFileOp);

      Option outputFileOp=Option.builder("o").longOpt("output").hasArg().desc("Output file").argName("file").required().build();
        options.addOption(outputFileOp);

和一个帮助选项

    Option helpOp =new Option("h",false,"Show Help");
    helpOp.setLongOpt("help");
    helpOptions.addOption(helpOp);

和解析器

DefaultParser parser = new DefaultParser();
CommandLine cmd=parser.parse(options,args);

if(cmd.hasOption(helpOp.getOpt())){
        HelpFormatter formatter = new HelpFormatter();
        formatter.printHelp( "MyApp.sh", options );
        System.exit(0);
    }

}

当用户输入例如 myApp -h .. 在解析步骤中引发异常时,缺少必需的选项,而我想打印帮助数据。

如何在保持这些选项按要求声明的同时允许调用帮助?

4

3 回答 3

16

的代码DefaultParser似乎总是调用该checkRequiredArgs()方法。这似乎表明你不能一举避免这个问题。

我们过去解决这种情况的方式(也许是次优方式)是解析命令行两次。解析速度很快,因此开销最小。

我们创建了一个checkForHelp(String[] args)采用 (String[] args) 的方法。它将帮助选项添加到选项,解析命令行,然后确定是否指定了帮助。如果是,则打印帮助并退出程序。否则,将处理完整的选项集。这种方法允许按预期处理所需的字段。请注意,帮助选项也必须添加到主列表中。

  public static Option helpOption = Option.builder("h")
          .longOpt("help")
          .required(false)
          .hasArg(false)
          .build();

  public static boolean checkForHelp(String[] args) throws ParseException  { 
    boolean hasHelp = false;

    Options options = new Options();


    try {
      options.addOption(helpOption);

      CommandLineParser parser = new DefaultParser();

      CommandLine cmd = parser.parse(options, args);

      if (cmd.hasOption(helpOption.getOpt())) {
          hasHelp = true;
      }

    }
    catch (ParseException e) {
      throw e;
    }

    return hasHelp;
  }

然后在main方法中,类似于:

    options.addOption(hostOption);
    options.addOption(portOption);
    options.addOption(serviceNameOption);
    options.addOption(helpOption); // <-- must also be here to avoid exception

    try {
        if (checkForHelp(args)) {
            HelpFormatter fmt = new HelpFormatter();
            fmt.printHelp("Help", options);
            return;
        }

        CommandLineParser parser = new DefaultParser();
        CommandLine cmd = parser.parse(options, args);


        if (cmd.hasOption("host")) {
            host = cmd.getOptionValue("host");
            System.out.println(host); // gets in here but prints null
        }
        if (cmd.hasOption("port")) {
            port = ((Number) cmd.getParsedOptionValue("port")).intValue();
            System.out.println(port); // gets in here but throws a null
                                      // pointer exception

        }
        if (cmd.hasOption("service_name")) {
            serviceName = cmd.getOptionValue("service_name");
            System.out.println(serviceName); // gets in here but prints null
        }
    }
    catch (Exception e) {
        e.printStackTrace();
    }

编辑:事实证明,这种方法类似于此处提供的答案:Commons CLI required groups。我想我感觉更好的是我们的方法有其他人支持我们所相信的。

EDIT2:在快速测试中,我相信可以通过使用“OptionGroup”来避免需要选项的问题。checkForHelp这是通过将所有选项添加到 OptionGroup 来工作的修订版。在我的快速测试中,它避免了出现的问题,例如(“--arg1 --help”)。

public static boolean checkForHelp(String[] args) throws ParseException
{
    boolean hasHelp = false;

    Options options = new Options();


    try {
        options.addOption(hostOption);  //has required set
        options.addOption(portOption);
        options.addOption(serviceNameOption);
        options.addOption(helpOption);            

        // create an option group
        OptionGroup og = new OptionGroup();
        og.addOption(hostOption);
        og.addOption(portOption);
        og.addOption(serviceNameOption);
        og.addOption(helpOption);

        CommandLineParser parser = new DefaultParser();

        CommandLine cmd = parser.parse(options, args, false);

        if (cmd.hasOption(helpOption.getOpt()) || cmd.hasOption(helpOption.getLongOpt())) {
            hasHelp = true;
        }

    }
    catch (ParseException e) {
        throw e;
    }

    return hasHelp;
}
于 2016-04-19T14:59:10.940 回答
6

--help/-h在使用解析之前解析原始参数并检查orhelp.getOpt()/help.getLongOpt()关键字不是更容易DefaultParser吗?这样可以避免双重解析开销。

for (String s : args) {
    if (s.equals("-h") || s.equals("--help")) {  // or use help.getOpt() || help.getLongOpt()
        formatter.printHelp("ApplicationName", arguments);
        System.exit(1);
    }
}
于 2018-09-05T14:13:45.320 回答
4

添加另一种方法,如前一张海报所说,但请确保在第一个无法识别的参数处停止。

private static boolean hasHelp(final Option help, final String[] args) throws ParseException
{
    Options options = new Options();
    options.addOption(help);
    CommandLineParser parser = new DefaultParser();
    CommandLine cmd = parser.parse(options, args, true);
    return cmd.hasOption(help.getOpt());
}

如果stopAtNonOption设置为 false,则此函数将抛出有效参数,例如java -jar app.jar -doStuff

于 2017-11-15T10:23:03.060 回答