Write an Applet which display current date and time on the web page??

Write an Applet which display current date and time on the web page??

Write an Applet which display current date and time on the web page?

View Answers

July 9, 2012 at 2:24 PM

Here is an applet code that display date and time.

import java.applet.*;
import java.awt.*;
import java.util.*;
import java.text.*;

public class ClockApplet extends Applet implements Runnable{
  Thread t,t1;
  public void start(){
  t = new Thread(this);
  t.start();
  }

  public void run(){
  t1 = Thread.currentThread();
  while(t1 == t){
  repaint();
  try{
  t1.sleep(1000);  
  }catch(InterruptedException e){}
  }
  }

  public void paint(Graphics g){
  Calendar cal = new GregorianCalendar();
  Date d=cal.getTime();
  SimpleDateFormat sdf=new SimpleDateFormat("dd-MM-yyyy hh:mm:ss");
  g.drawString(sdf.format(d), 20, 30);
  }
}

To call this applet, you need to create an html file.

<HTML>
<BODY>
<div align = "center">
<APPLET CODE = "ClockApplet" WIDTH = "500" HEIGHT = "400"></APPLET>
</div>
</BODY>
</HTML>









Related Tutorials/Questions & Answers:
Write an Applet which display current date and time on the web page??
Write an Applet which display current date and time on the web page??
Advertisements
javascript current date and time.
How to display the current time
Get current Date and Time
Write an applet to display scrolling image in an applet window using thread.
How to display current date in textbox - Date Calendar
Display current time using jQuery & JSP
Iphone Show Current Date & Time
iPhone Date Picker
Display Current Date using JSP Custom(user define) Tag
J2ME Current Date And Time
updated with current date n time
display current time when using datetimepiker in struts2
date format to be updated with current date time
Mysql Date Arithmetic
Write date servlet and test on tomcat
JDBC: Get current Date and Time Example
how to display(update) current date and month in select box on selecting the year.
Display Date and Time - Design concepts & design patterns
Display PHP clock with user input date and time
How can we get second of the current time using date function?
Display current time & system properties using JSP expressions
Get Date and Time
Write an applet that prints "Lear Java it is useful" at the current cursor position whenever the mouse left button is clicked.
Mysql Date and Time
Applet ... - Date Calendar
Display current date in text box in JSP using javascript
Mysql Date no Time
PHP Display date and time
Current Date and Time
Current Date and Time
By using Applet display a circle in a rectangle
applet running but no display - Applet
How to get the current date in Java?
convert current date into date format
current date set
applet is running but no display
JDBC : Current Date
Iphone Current Date Application
Display Date - Java Beginners
C Current Time
Current date in php
iPhone Current Date, iPhone Current Date Application
Mysql Date Format codes
Mysql Date from Date
date_time_set
Display image in the applet
Time display - JSP-Servlet
current date in php

Ads