用apache commons cli定义位置参数

我想定义一个包含命名参数和位置参数的Apache Commons CLI分析器。

program [-a optA] [-b optB] [-f] pos1 pos2

我如何验证pos1和pos2?


一个快速阅读的文档,我不知道CommandLine类将提供访问其余的位置参数。

解析通过命令行传递的选项后,其余参数在CommandLine.getArgs()方法中可用。

public static void main(String[] args) {
      DefaultParser clParse = new DefaultParser();
      Options opts = new Options();
      opts.addOption("a", true, "Option A");
      opts.addOption("b", true, "Option B");
      opts.addOption("f", false, "Flag F");

      CommandLine cmdLine = clParse.parse(opts, args); 
      System.out.println(cmdLine.getArgs().length);
}
链接地址: http://www.djcxy.com/p/90469.html

上一篇: Defining positional parameters with apache commons cli

下一篇: AngularJS service inheritance issues