I could not remember it so I decided to make a little example of it. currentTimeMillis() returns the milliseconds time to you. If I remember it correctly it gives the time passed since 1972 or so.
import java.awt.*;
import java.applet.*;
public class CurrentTimeMilliseconds01 extends Applet {
public void init() {
}
public void paint(Graphics g) {
g.drawString("Getting the milliseconds.",20,40);
g.drawString("System.currentTimeMillis() : " + System.currentTimeMillis(), 20, 60 );
}
}
Geen opmerkingen:
Een reactie posten
Opmerking: Alleen leden van deze blog kunnen een reactie posten.