我使用代码
初始化了JFormattedTextFieldJFormattedTextField f = new JFormattedTextField(createFormatter());
f.setValue(null);
f.setColumns(1);
f.setEditable(true);
f.setCaretPosition(0);
textField是1列宽,在createFormatter方法中我有
MaskFormatter formatter = null;
try {
formatter = new MaskFormatter("#");
formatter.setValidCharacters("123456789");
} catch (java.text.ParseException exc) {
System.err.println("formatter is bad: " + exc.getMessage());
System.exit(-1);
}
return (formatter);
如您所见,我只想在文本字段中输入数字1-9。当Tabing到文本字段时这很好用,但是当我实际点击文本字段以输入时,我会发现光标会发生这种奇怪的事情。
这里光标闪烁空白...... 并且光标闪烁黑色。
正如您所看到的,左上角有一个小黑点,光标远离左侧。我可以突出显示左侧区域,并且不能再向此文本字段添加任何字符(甚至不是1-9号)。这让我相信当我用光标聚焦文本字段时,会添加一个字符。我不知道这个角色是什么,我不知道如何解决这个问题。
有谁知道如何解决这个问题?
这是sscce
public class FormattedTextField {
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(100, 75);
JPanel content = new JPanel(new FlowLayout());
frame.setContentPane(content);
JFormattedTextField f1 = new JFormattedTextField(createFormatter());
f1.setValue(null);
f1.setColumns(1);
JFormattedTextField f2 = new JFormattedTextField(createFormatter());
f2.setValue(null);
f2.setColumns(1);
content.add(f1);
content.add(f2);
frame.setVisible(true);
}
public static MaskFormatter createFormatter() {
MaskFormatter formatter = null;
try {
formatter = new MaskFormatter("#");
formatter.setValidCharacters("123456789");
} catch (java.text.ParseException exc) {
System.err.println("formatter is bad: " + exc.getMessage());
System.exit(-1);
}
return (formatter);
}
}
在此示例中,左上角没有一点黑点,但是当使用鼠标聚焦文本字段时,仍然会添加一个空白字符。
答案 0 :(得分:3)
在我的带有JDK7的Mac上,我只能用您的代码获得恼人的插入符号行为。我没有看到圆点。
从MaskFormatter
切换到Format
似乎可以解决此问题。我对JFormattedTextField
s的个人体验总是与Format
结合使用似乎有效(经过一些小调整后,请参阅this post)。
无论如何,这里是您使用Format
import javax.swing.JFormattedTextField;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.text.MaskFormatter;
import java.awt.FlowLayout;
import java.text.AttributedCharacterIterator;
import java.text.FieldPosition;
import java.text.Format;
import java.text.NumberFormat;
import java.text.ParsePosition;
public class FormattedTextFieldDemo {
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(100, 75);
JPanel content = new JPanel(new FlowLayout());
frame.setContentPane(content);
JFormattedTextField f1 = new JFormattedTextField(createFormat());
f1.setValue(null);
f1.setColumns(1);
JFormattedTextField f2 = new JFormattedTextField(createFormat());
f2.setValue(null);
f2.setColumns(1);
content.add(f1);
content.add(f2);
JFormattedTextField f3 = new JFormattedTextField(createFormatter());
f3.setValue(null);
f3.setColumns( 1 );
JFormattedTextField f4 = new JFormattedTextField(createFormatter());
f4.setValue(null);
f4.setColumns(1);
content.add(f3);
content.add(f4);
frame.setVisible(true);
}
private static MaskFormatter createFormatter() {
MaskFormatter formatter = null;
try {
formatter = new MaskFormatter("#");
formatter.setValidCharacters("123456789");
} catch (java.text.ParseException exc) {
System.err.println("formatter is bad: " + exc.getMessage());
System.exit(-1);
}
return (formatter);
}
private static Format createFormat(){
final NumberFormat format = NumberFormat.getInstance();
format.setParseIntegerOnly( true );
return new Format() {
@Override
public StringBuffer format( Object obj, StringBuffer toAppendTo, FieldPosition pos ) {
return format.format( obj, toAppendTo, pos );
}
@Override
public AttributedCharacterIterator formatToCharacterIterator( Object obj ) {
return format.formatToCharacterIterator( obj );
}
@Override
public Object parseObject( String source, ParsePosition pos ) {
int initialIndex = pos.getIndex();
Object result = format.parseObject( source, pos );
if ( result != null && pos.getIndex() > initialIndex + 1 ) {
int errorIndex = initialIndex + 1;
pos.setIndex( initialIndex );
pos.setErrorIndex( errorIndex );
return null;
}
return result;
}
};
}
}