Setting Time Format for jspinner in swings
Asked Answered
L

2

16

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.

Lamonica answered 2/10, 2010 at 11:3 Comment(0)
B
16

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"));
Brewing answered 2/10, 2010 at 12:19 Comment(1)
Thanks for answering. but above code is giving me result in "dd-mm-yyyy" format. I need in hh:mm am/pm format. what can be a suitable format to pass instead of "dd-mm-yyyy" for getting time in hh:mm am/pm format only.Lamonica
L
9

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.

Lamonica answered 2/10, 2010 at 13:19 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.