How to set the current date on jDateChooser from PC?

I got a situation where I need to fill a field with the jDateChooser

current date automatically (without clicking the pop-up calendar).

How can i do this?

Thanks in advance.

+3


source to share


1 answer


Date date = new Date();
dateChooser.setDate(date);

      



+2


source







All Articles