本文介绍了如何以编程方式检查JFormattedTextField允许输入什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想以编程方式清除" JFormattedTextField,但如果我只是调用txtAny.setText(")无效,原因是textfield的正则表达式模式在我的情况下:
I would like to "clear" a JFormattedTextField programmatically but if I simply calltxtAny.setText("") it is doesn't work cause textfield's regex patternin my case:
private final String FORMATTER_STRING_FLOAT =
"[\\p{Digit}\\p{Cntrl}]{1,32}(\\.[\\p{Digit}\\p{Cntrl}]{0,2})?";
至少需要一位数字.
所以我的问题是:如何获得JFormattedTextField的正则表达式模式至少可以进行进一步的手动局部处理?
So my question is: how can I obtain a regex pattern of a JFormattedTextFieldfor at least further manual partial processing?
推荐答案
调用setText(anyValidString)
而不是setText("")
这篇关于如何以编程方式检查JFormattedTextField允许输入什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!