I need to set the current date to jdatechooser this code is Not working
Date date = new Date ();
Jdatechooser.setDate(date);
You need a datechooser object.
Date date = new Date ();
JDateChooser dateChooser = new JDateChooser();
dateChooser.setDate(date);