如何使选项仅接受某些指定值,如下例所示:
$ java -jar Mumu.jar -a foo
OK
$ java -jar Mumu.jar -a bar
OK
$ java -jar Mumu.jar -a foobar
foobar is not a valid value for -a
答案 0 :(得分:8)
另一种方法是扩展Option类。在工作中我们做到了:
public static class ChoiceOption extends Option {
private final String[] choices;
public ChoiceOption(
final String opt,
final String longOpt,
final boolean hasArg,
final String description,
final String... choices) throws IllegalArgumentException {
super(opt, longOpt, hasArg, description + ' ' + Arrays.toString(choices));
this.choices = choices;
}
public String getChoiceValue() throws RuntimeException {
final String value = super.getValue();
if (value == null) {
return value;
}
if (ArrayUtils.contains(choices, value)) {
return value;
}
throw new RuntimeException( value " + describe(this) + " should be one of " + Arrays.toString(choices));
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
} else if (o == null || getClass() != o.getClass()) {
return false;
}
return new EqualsBuilder().appendSuper(super.equals(o))
.append(choices, ((ChoiceOption) o).choices)
.isEquals();
}
@Override
public int hashCode() {
return new ashCodeBuilder().appendSuper(super.hashCode()).append(choices).toHashCode();
}
}
答案 1 :(得分:6)
之前我想要这种行为,并且从未遇到过使用已提供的方法执行此操作的方法。这并不是说它不存在。一种蹩脚的方式,就是自己添加代码,如:
private void checkSuitableValue(CommandLine line) {
if(line.hasOption("a")) {
String value = line.getOptionValue("a");
if("foo".equals(value)) {
println("OK");
} else if("bar".equals(value)) {
println("OK");
} else {
println(value + "is not a valid value for -a");
System.exit(1);
}
}
}
显然,除了长期的if / else之外,还有更好的方法可以做到这一点,可能还有enum
,但这应该就是你需要的。我还没有编译这个,但我认为它应该工作。
此示例也不强制使用“-a”开关,因为问题中未指定。
答案 2 :(得分:5)
由于commons-cli不直接支持,因此最简单的解决方案可能是在获取选项时检查选项的值。