How can i automatically write current system date as "YYYY-MM-DD HH:MM:SS"
to formatted text field after program is launched in JAVA?
Actually i have two formatted text field. One of must be shown current system date - 5 Min
second must be shown current system date after program is launched.
When i run this program Jpanel comes. Ihave these 2 formattedtextfield in this panel.
Left one: must be show current system date - 5min (2013-12-22 21:00:00.000)
Right one: must be show current system date (2013-12-22 21:05:00.000)
How can i code it for automaticly appear this values to fields?
P.S: sorry i dont attach image because i dont have 10 rep yet :(
You can use a
SimpleDateFormat
the set the text of the textfield with the current timeIf you need to get the date value of the input text, just parse it.
And to set the field editable with the desired format, you can use a
MaskFormatter
. See my example. It runs