读取后this article和this question我试图使两者的组合:具有JFormattedTextField总是显示在正确的位置上的斜杠和自动解析Date对象
我提出的代码如下:
private DateFormat df = new SimpleDateFormat("dd/MM/yyyy");
textField_DaRiassuntoIncassi = new JFormattedTextField(df);
textField_ARiassuntoIncassi = new JFormattedTextField(df);
textField_DaScadenze = new JFormattedTextField(df);
textField_AScadenze = new JFormattedTextField(df);
textField_DaRiassuntoIncassi.setColumns(10);
textField_ARiassuntoIncassi .setColumns(10);
textField_DaScadenze .setColumns(10);
textField_AScadenze .setColumns(10);
try
{
MaskFormatter dateMask = new MaskFormatter("##/##/####");
dateMask.install(textField_DaRiassuntoIncassi);
dateMask.install(textField_ARiassuntoIncassi);
dateMask.install(textField_DaScadenze);
dateMask.install(textField_AScadenze);
}
catch(ParseException ex)
{
ex.printStackTrace();
}
的问题是,当我在文本框点击输入的值,当I型为I型的两条斜线被移动,而不是我想他们保持固定(就像当键盘上的键“插入”按下)。 如果我把用MaskFormatter在这个问题消失的构造函数,但我可以输入任何数字我想在文本框,如“99/00/9874”,而组件告诉我这是一个确定的值,因为我不知道在哪里插入SimpleDateFormat。
我的最后一招是把MaskFormatter之外的JFormattedTextField构造器中,获得与的getText()方法的文字,尝试解析与日期格式,并在错误的情况下做一些事情的日期,但我觉得有一个聪明的方法做这个。 我尝试使用方法
textField_AScadenze.setFormatterFactory(new DefaultFormatterFactory(new DateFormatter(new SimpleDateFormat("dd/MM/yyyy"))));
但是一旦我没有插入任何东西并且点击了斜线就消失了。 请帮忙。 谢谢
答案 0 :(得分:3)
使用JSpinner with SpinnerDateModel(超出记录,你可以删除两个JButton,但是非常好的编码器工作)
(不会这样,JFormattedTextField在某些情况下可能会过度杀伤)
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.swing.JButton;
import javax.swing.JFormattedTextField;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.SwingUtilities;
import javax.swing.text.MaskFormatter;
public class TimeFormatter extends MaskFormatter {
private static final long serialVersionUID = 1L;
public TimeFormatter() { // set mask and placeholder
try {
setMask("##/##/####");
setPlaceholderCharacter('0');
setAllowsInvalid(false);
setOverwriteMode(true);
} catch (ParseException e) {
e.printStackTrace();
}
}
@Override
public Object stringToValue(String string) throws ParseException {
SimpleDateFormat df = new SimpleDateFormat("dd/MM/yyyy");
if (string == null) {
string = "00/00/0000";
}
return df.parse(string);
}
@Override
public String valueToString(Object value) throws ParseException {
SimpleDateFormat df = new SimpleDateFormat("dd/MM/yyyy");
if (value == null) {
value = new Date(0);
}
return df.format((Date) value);
}
private void MyGui() {
final MaskFormatter formatter = new TimeFormatter(); // textfield 1: create formatter and textfield
//formatter.setValueClass(java.util.Date.class);
final JFormattedTextField tf2 = new JFormattedTextField(formatter);// textfield 2: create formatter and textfield
tf2.setValue(new Date()); // no initial value
final JLabel label = new JLabel();
JButton bt = new JButton("Show Value");// button to show current value
bt.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
System.out.println(" value 2 = " + tf2.getValue());
System.out.println(" value 2 = " + tf2.getText());
System.out.println("value class: " + formatter.getValueClass());
label.setText(tf2.getText());
}
});
JFrame f = new JFrame(); // main frame
f.getContentPane().setLayout(new GridLayout());
f.getContentPane().add(tf2);
f.getContentPane().add(label);
f.getContentPane().add(bt);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.pack();
f.setVisible(true);
}
public static void main(String[] args) throws Exception {
Runnable doRun = new Runnable() {
@Override
public void run() {
new TimeFormatter().MyGui();
}
};
SwingUtilities.invokeLater(doRun);
}
}