0

Possible Duplicate:
Is there any good and free Date AND Time Picker available for Java Swing?

Is there any date picker java swing which is easy to use and program? i want the most basic one just pop up and choose the date nothingelse.. Please send me also with a tutorial that how can i use it?

Thanks

Community
  • 1
  • 1
xmux
  • 708
  • 2
  • 12
  • 28

2 Answers2

1

Try JCalendar. Has quite a bit of functionality pre-built.

Deco
  • 3,261
  • 17
  • 25
1

Professionally we use JDatePicker but you will have to pay for it. there tutorial is here. If you are looking for a lower cost option I'd consider using JIDE's DateSpinner you can try it here and see the source code. Unfortunately JIDE's component is just a spinner to use the ComboBox or Panel you will need a paid for license.

I should point out that we also use JIDE and JDatePicker we don't receive any royalties

GrahamA
  • 5,875
  • 29
  • 39
  • The LGoodDatePicker library includes a good **DatePicker** component. (As well as the TimePicker and DateTimePicker classes). The three components are simple and easy to use. For a usage example, look at the "BasicDemo.java" class. It's an open source library (free). Here are some screenshots of the components and the full demo. [Screenshot 1](http://i.stack.imgur.com/ghDdI.png), [Screenshot 2](http://i.stack.imgur.com/QXgWE.png). The project home page is located at http://github.com/LGoodDatePicker/LGoodDatePicker . – BlakeTNC Nov 30 '16 at 00:17