i am creating my JSpinner. If i don't use "dateSpinner.setEditor(new JSpinner.DateEditor(dateSpinner, "DD:MM:YYYY"));", the GUI works well, displaying the date and time correctly, e.g, 12-2-13 11:39. But if i use it, the date gets wrong, showing 44/02/2012. What's the problem? Can anyone help me out? Thanks.

private JPanel getTimePanel() {
        JPanel centerPanel = new JPanel();
        centerPanel.setBorder(BorderFactory.createTitledBorder("Calendar"));

        GregorianCalendar cal = new GregorianCalendar();
        Date initialDate = cal.getTime();
        cal.add(Calendar.YEAR, -50);
        Date earliestDate = cal.getTime();
        cal.add(Calendar.YEAR, 100);
        Date latestDate = cal.getTime();

        SpinnerDateModel dateModel = new SpinnerDateModel(initialDate,
                                                          earliestDate,
                                                          latestDate,
                                                          Calendar.DATE);
        JSpinner dateSpinner = new JSpinner(dateModel);
        //dateSpinner.setEditor(new JSpinner.DateEditor(dateSpinner, "DD:MM:YYYY"));
        // Add GUI components
        centerPanel.add(dateSpinner);

        return centerPanel;
    }
link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

I'm guessing that your format String is incorrect. It should follow the conventions of the SimpleDateFormat: "dd:MM:yyyy"

link|improve this answer
u r right, man. i should follow the convention. many thanks. – icepeanuts Feb 13 at 6:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.