Swing中JFormattedTextField组件如何使用

发布时间:2021-08-12 11:18:58 作者:Leah
来源:亿速云 阅读:139

Swing中JFormattedTextField组件如何使用,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。

清单 1. 定义输入掩码

// Four-digit year, followed by month name and day of month,  // each separated by two dashes (--)  DateFormat format =  new SimpleDateFormat("yyyy--MMMM--dd");  DateFormatter df = new DateFormatter(format);  // US Social Security number  MaskFormatter mf1 =  new MaskFormatter("###-##-####");  // US telephone number  MaskFormatter mf2 =  new MaskFormatter("(###) ###-####");

一旦您指定了输入格式,您随后就要将格式化器传入 JFormattedTextField 构造器中,如下所示:

还有其它一些可配置的选项,它们取决于您使用的格式化器。例如:用 MaskFormatter ,您能用 setPlaceholderCharacter(char) 设置占位符字符。另外,对于日期域,如果您将域初始化为某个值使一个用户知道什么样的输入格式是可接受的,这样将会有所帮助。

全部组合在一起

创建屏蔽输入域的一切都已就绪。清单 2 通过把以前的代码片断组合在一起,为您提供了一个用于检验新性能的完整示例。图 1 展示了这个示例的显示。随便调整各个掩码来检验其他的掩码字符。

清单 2.Swing的JFormattedTextField组件示例

import java.awt.*;  import javax.swing.*;  import javax.swing.text.*;  import java.util.*;  import java.text.*;  public class FormattedSample {  public static void main (String args[]) throws ParseException {  JFrame f = new JFrame("JFormattedTextField Sample");  f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);  Container content = f.getContentPane();  content.setLayout(new BoxLayout(content, BoxLayout.PAGE_AXIS));  // Four-digit year, followed by month name and day of month,  // each separated by two dashes (--)  DateFormat format =  new SimpleDateFormat("yyyy--MMMM--dd");  DateFormatter df = new DateFormatter(format);  JFormattedTextField ftf1 = new JFormattedTextField(df);  ftf1.setValue(new Date());  content.add(ftf1);  // US Social Security number  MaskFormatter mf1 =  new MaskFormatter("###-##-####");  mf1.setPlaceholderCharacter('_');  JFormattedTextField ftf2 = new JFormattedTextField(mf1);  content.add(ftf2);  // US telephone number  MaskFormatter mf2 =  new MaskFormatter("(###) ###-####");  JFormattedTextField ftf3 = new JFormattedTextField(mf2);  content.add(ftf3);  f.setSize(300, 100);  f.show();  }  }

关于Swing中JFormattedTextField组件如何使用问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注亿速云行业资讯频道了解更多相关知识。

推荐阅读:
  1. swing组件是什么
  2. Java Swing组件定制RadioButton示例

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

swing

上一篇:C#中怎么调用COM组件

下一篇:ASP.NET组件的生命周期有哪些

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》