91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Swing中JFormattedTextField組件如何使用

發布時間:2021-08-12 11:18:58 來源:億速云 閱讀:142 作者:Leah 欄目:編程語言

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組件如何使用問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乌鲁木齐县| 伊川县| 阳山县| 越西县| 瑞金市| 兴业县| 广宁县| 阳泉市| 龙南县| 华蓥市| 和林格尔县| 大方县| 濉溪县| 神农架林区| 锡林郭勒盟| 两当县| 涞源县| 阳曲县| 鱼台县| 泽普县| 临猗县| 务川| 永昌县| 漳浦县| 息烽县| 府谷县| 伊宁市| 伊金霍洛旗| 绥中县| 斗六市| 云南省| 安徽省| 古浪县| 嘉鱼县| 大宁县| 汕尾市| 墨玉县| 清远市| 鲁甸县| 丰原市| 浦东新区|