在尝试使用JCommander包的简单示例时,我在Eclipse中遇到错误。错误说:
对于注释类型,未定义属性validateWith 参数
以及我使用的代码如下:
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.List;
import com.beust.jcommander.*;
import com.beust.jcommander.validators.PositiveInteger;
public class JCommanderExample {
@Parameter(names = { "-sp", "-semAndPrec"}, validateWith = CorrectPathValidator.class)
private Path semAndPrec;
}
当然,我提供了CorrectPathValidator类,如http://jcommander.org/#Parameter_validation文档中所述。
这是班级:
import java.nio.file.Paths;
import com.beust.jcommander.IParameterValidator;
import com.beust.jcommander.ParameterException;
public class CorrectPathValidator implements IParameterValidator {
public void validate(String name, String value) throws ParameterException {
try {
Paths.get(value);
} catch (Exception e) {
String error = "Parameter " + name + " should be a path (found "
+ value + ")";
throw new ParameterException(error);
}
}
}
显然我错过了一些东西,但http://jcommander.org/#Parameter_validation的示例似乎与我尝试的相同:
@Parameter(names = "-age", validateWith = PositiveInteger.class)
private Integer age;
有人可以告诉我为什么会收到错误吗?
答案 0 :(得分:0)
我怀疑这是因为您正在尝试解析一种" Path",这不是JCommander的可解析类型之一。这个错误似乎在说你的验证器试图验证一个"未定义的参数"类型"路径"。
将参数更改为可自动解析的类型:http://jcommander.org/#Types_of_options或实现自定义类型:http://jcommander.org/#Custom_types。
然后验证者应该工作。