带有 MaskFormatter 的 JFormattedTextField
我有一个 JFormattedTextField
,用于限制日期和时间的条目。我想使用MaskFormatter
来显示占位符字符。当文本字段已经使用 SimpleDateFormat
时,有没有办法在 JFormattedTextField
之上使用 MaskFormatter
?
谢谢, 杰夫
I have a JFormattedTextField
that I use to restrict entries of a date and time. I want to use a MaskFormatter
though to show the placeholder chars. Is there a way to use a MaskFormatter
on top of the JFormattedTextField
when the text field is already using a SimpleDateFormat
?
Thanks,
Jeff
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
除非我误解了这个问题。
Unless I'm misunderstanding the question.
或者,考虑
InputVerifier
,如InputVerificationDemo
中建议的 以及这个更详细的示例。Alternatively, consider an
InputVerifier
, as suggested inInputVerificationDemo
and this more elaborate example.