所以,我有JFormattedTextField
让用户输入一个号码。号码可以是1到99,所以我使用了MaskFormatter("##")
。但是,由于某种原因,如果我什么也没输入,它会在文本字段中放置2个空格。这很令人讨厌,因为如果用户点击文本字段的中心输入数字,它会将光标放在2个空格的末尾(因为空格比数字短),所以他们必须回到把数字。
如何删除这些空格并保持textfield
为空?我尝试setText("")
,但它没有做任何事情。
以下是代码:
private JFormattedTextField sequenceJTF = new JFormattedTextField();
private JLabel sequenceLabel = new JLabel("Enter a number :");
public Window(){
this.setTitle("Generic title");
this.setSize(350, 250);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setLocationRelativeTo(null);
this.setVisible(true);
JPanel container = new JPanel();
DefaultFormatter format = new DefaultFormatter();
format.setOverwriteMode(false); //prevents clearing the field if user enters wrong input (happens if they enter a single digit)
sequenceJTF = new JFormattedTextField(format);
try {
MaskFormatter mf = new MaskFormatter("##");
mf.install(sequenceJTF); //assign the maskformatter to the text field
} catch (ParseException e) {}
sequenceJTF.setPreferredSize(new Dimension(20,20));
container.add(sequenceLabel);
container.add(sequenceJTF);
this.setContentPane(container);
}
答案 0 :(得分:0)
您的mf.install(sequenceJTF);
下的Java核心中有下一个代码:
...
ftf.setText(valueToString(ftf.getValue())); // ftf - JFormattedTextField
...
其中valueToString()
如果没有字符则返回两个空格,用于匹配掩码"##"
。空格取自MaskFormatter.getPlaceholderCharacter()
,它返回空格作为默认字符。
我的解决方案不太好,但它确实有效:
try {
MaskFormatter mf = new MaskFormatter("##") {
@Override
public char getPlaceholderCharacter() {
return '0'; // replaces default space characters with zeros
}
};
mf.install(sequenceJTF); //assign the maskformatter to the text field
} catch (ParseException e) {
e.printStackTrace(); // always, remember, ALWAYS print stack traces
}