在让JFormattedTextField与我的自定义格式一起使用时非常沮丧,我想知道是否有使用正则表达式的Formatter
或FormatterFactory
?
我的想法是,如果有一个,那么我可以将它包装在静态类中并像这样调用它:
mFormattedTextField.setFormatterFactory(
SomeStaticClass.getRegexFormatFactory("^(\\d{1,}h)(\\s([0-5])?[0-9]m)?$"));
有关更多背景信息,请参阅我的previous question:
“我想使用JFormattedTextField来允许用户在表单中输入持续时间值。示例有效值为:2h 30m
72h 15m
6h
{{1 }}的“
答案 0 :(得分:3)
您是否阅读过this article?如果链接腐烂,它表示你真正需要做的就是覆盖AbstractFormatter的stringToValue
方法,如下所示:
public Object stringToValue(String text) throws ParseException {
Pattern pattern = getPattern();
if (pattern != null) {
Matcher matcher = pattern.matcher(text);
if (matcher.matches()) {
return super.stringToValue(text);
}
throw new ParseException("Pattern did not match", 0);
}
return text;
}
实际上,快速搜索会产生几个完全实现的免费解决方案;没有那些足以满足你的需求吗?