Question

How to print DD/MM/YYYY on JDateChooser field?

JDateChooser jdc=new JDateChooser();

i am using JDateChooser for selecting date, But i also want to facilitate type date in DD/MM/YYYY format.

enter image description here

OTHER TIPS

From the api, I'd use the JDateChooser(java.lang.String dateFormatString, boolean startEmpty) constructor as so;

JDateChooser jdc = new JDateChooser("DD/MM/YYYY", true);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top