vote up 1 vote down star

any builtin classes available to display the digital clock in java??

flag
You mean a 7-segmented display of the numbers? – kd304 Jun 26 at 7:19

3 Answers

vote up 2 vote down

i dont think there are any built in, but they are pretty easy to develop. there is a swing timer utility that you can use. here is a demo

link|flag
thank u!! its a good example – Raji Jun 26 at 5:04
vote up 0 vote down

No, not that I'm aware of.

However, assuming the use of Swing, one could use the JLabel class or the like use its setText method to show display the current time. (Another option is to extend the JLabel to display the current time as well.)

If one needs to actually make a subclass of JComponent which displays a seven-segment digit-like display by writing a custom paintComponent method to draw the digits.

link|flag
vote up 0 vote down

You can print the date and time with

System.out.println(new java.util.Date());
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.