Pergunta

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

Outras dicas

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);
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top