Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Setting Time Format for jspinner in swings

I am working in a java swing application. In that application i have to take time input from user. I need to make a JSpinner for the time, only in the hh:mm am/pm format. i searched in properties but could not get this format.

Please suggest me some way to display time in hh:mm am/pm format. I thank to all your valuable suggestions.

like image 809
Toman Avatar asked Oct 02 '10 11:10

Toman


2 Answers

You can set an editor and a date model like this:

SpinnerDateModel model = new SpinnerDateModel();
model.setCalendarField(Calendar.MINUTE);

spinner= new JSpinner();
spinner.setModel(model);
spinner.setEditor(new JSpinner.DateEditor(spinner, "h:mm a"));
like image 172
Guillaume Avatar answered Nov 14 '22 07:11

Guillaume


Thanks for answering Guillaume. Your answer is working for me after making a small change i.e.

spinner.setEditor(new JSpinner.DateEditor(spinner, "h:mm a"));

This gives me an appropriate format.

like image 24
Toman Avatar answered Nov 14 '22 06:11

Toman