Apache Commons CLI:获取选项的值列表

时间:2013-06-18 23:40:44

标签: java command-line-interface apache-commons

对于CLI,我需要传入一个int数组作为特定选项的输入。

示例 - 以下命令将接受customerIds数组并执行一些操作。

  

myCommand -c 123 124 125

我使用Apache commons CLI实现了CLI,我使用getOptionValues(“c”)来检索此数组。

问题是,这只返回数组中的第一个元素,即[123],而我期望它返回[123,124,125]。

我的代码的精简版,

CommandLine cmd;
CommandLineParser parser = new BasicParser();
cmd = parser.parse(options, args);
if (cmd.hasOption("c")){
String[] customerIdArray = cmd.getOptionValues("c");
// Code to parse data into int
}

有人可以帮我在这里找出问题吗?

4 个答案:

答案 0 :(得分:40)

我想在此处添加此内容作为@Zangdak的答案,并在同一问题上添加我的发现。

如果不调用#setArgs(int),则会发生RuntimeException。当您知道此选项的确切最大参数量时,请设置此特定值。当此值未知时,类Option具有常量:Option.UNLIMITED_VALUES

这会改变gerrytans对以下内容的回答:

Options options = new Options();
Option option = new Option("c", "c desc");
// Set option c to take 1 to oo arguments
option.setArgs(Option.UNLIMITED_VALUES);
options.addOption(option);

答案 1 :(得分:34)

您必须设置该选项可以采用的参数值的最大值,否则它假定该选项只有1个参数值

Options options = new Options();
Option option = new Option("c", "c desc");
// Set option c to take maximum of 10 arguments
option.setArgs(10);
options.addOption(option);

答案 2 :(得分:7)

看起来我对派对来说有点晚了,但apache公共cli已经发展了,现在(至少在1.3.1中)我们有了一种新方法来设置可以有无限数量的参数

Consumer

答案 3 :(得分:0)

您必须指定两个参数setArgssetValueSeparator。然后可以传递的参数的列表,例如-k=key1,key2,key3

Option option = new Option("k", "keys", true, "Description");
// Maximum of 10 arguments that can pass into option
option.setArgs(10);
// Comma as separator
option.setValueSeparator(',');