Java中的JSpinner.DateEditor在初始化时不尊重TimeZone

时间:2016-05-25 17:46:33

标签: java swing date jspinner

我正在使用bug修复现有的Swing应用程序,该应用程序使用java日期,Swing的JSpinner作为DateEditor。我试图让编辑器默认使用UTC来显示时间,而不是我们当地的时区。该应用程序使用Java 8在Windows上运行。

我正在使用的代码如下。

import java.util.Calendar;
import java.util.Date;
import java.util.TimeZone;

import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JSpinner;
import javax.swing.SpinnerDateModel;

    public class Test {

    public static void main(String [] args) {
        // Initialize some sample dates
        Date now = new Date(System.currentTimeMillis());


        JSpinner spinner = new JSpinner();

        // Create model with a current date and no start/end date boundaries, and set it to the spinner
        spinner.setModel(new SpinnerDateModel(now, null, null, Calendar.MINUTE));

        // Create new date editor with a date format string that also displays the timezone (z)
        // Set the format's timezone to be UTC, and finally set the editor to the spinner
        JSpinner.DateEditor startTimeEditor = new JSpinner.DateEditor(spinner, "yyyy-MMM-dd HH:mm zzz");

        startTimeEditor.getFormat().setTimeZone(TimeZone.getTimeZone("UTC"));
        spinner.setEditor(startTimeEditor);

        JPanel panel = new JPanel();
        panel.add(spinner);
        JOptionPane.showConfirmDialog(null, panel);
    }

}

但是,此代码存在初始化问题。首次出现Dialog时,时间显示在我们的本地时区,而不是UTC。一旦用户首次通过点击它与该字段进行交互,它就会切换到UTC并从那里开始正常工作。

如何让字段最初以UTC时间显示?

1 个答案:

答案 0 :(得分:4)

有趣的错误。对我有用的解决方法是将微调器的初始值设置为new Date(0)(1970年1月1日),然后在调整编辑器后调用spinner.setValue(new Date())

真正的问题是,Spinner似乎没有更新其文本以响应编辑器属性的更改。实际上,JSpinner文档表明编辑器属性根本不是绑定属性。因此,另一种解决方法是在编辑器更改时强制Spinner更新:

SpinnerModel model = new SpinnerDateModel(now, null, null, Calendar.MINUTE);
JSpinner spinner = new JSpinner(model) {
    @Override
    public void setEditor(JComponent editor) {
        super.setEditor(editor);
        fireStateChanged();
    }
};