How To Create Analog Clock Using Java Applet

Introduction

In this article we discuss how to create an analog clock using a Java applet. We must use Java applet components like the graphics class and we need to implement a runnable interface to start, run, suspend, stop etcetera the thread. Threading is used to move the hands of our clock and the Graphics class is used to design the line, strings, etcetera.

There are certain requirements for the creation of the analog clock using a Java applet.

Step 1

Import the following packages:

import java.util.*;

import java.text.*;

import java.applet.*;

import java.awt.*;

Step 2

We need to define a variable and make the object of the SimpleDateFormat class. In other words:

Thread thr=null;

SimpleDateFormat frmatter=new SimpleDateFormat("hh:mm:ss", Locale.getDefault());

Date d=clndr.getTime();

For drawing and running the second hand, we use the drawHand method, as in the following:

void drawHand(double angle, int radius, Graphics grp)

      {

        angle-=0.5*Math.PI;

        int a=(int)(radius*Math.cos(angle));

        int b=(int)(radius*Math.sin(angle));

        grp.drawLine(clkwidth/2,clkheight/2,clkwidth/2+a,clkheight/2+b);

      }

The following figure introduces the wedge structure:

wedge.jpg

void drawWedge(double angle,int radius, Graphics grp)

      {

        angle-=0.5*Math.PI;

        int a=(int)(radius*Math.cos(angle));

        int b=(int)(radius*Math.sin(angle));

        angle+=2*Math.PI/3;

        int a2=(int)(5*Math.cos(angle));

        int b2=(int)(5*Math.sin(angle));

        angle+=2*Math.PI/3;

        int a3=(int)(5*Math.cos(angle));

        int b3=(int)(5*Math.sin(angle));

        grp.drawLine(clkwidth/2+a2, clkheight/2+b2,clkwidth/2+a,clkheight/2+b);

        grp.drawLine(clkwidth/2+a3, clkheight/2+b3,clkwidth/2+a,clkheight/2+b);

        grp.drawLine(clkwidth/2+a2, clkheight/2+b2,clkwidth/2+a3,clkheight/2+b3);

      }

Step 3

We are creating a structure method using the graphics class for the design of the analog clock, as in the following:

public void paint(Graphics grp)

      {

        grp.setColor(Color.gray);

        drawWedge(2*Math.PI*clkhours/12,clkwidth/5,grp);

        drawWedge(2*Math.PI*clkminutes/60,clkwidth/3,grp);

        drawHand(2*Math.PI*clkseconds/60,clkwidth/2,grp);

        grp.setColor(Color.white);

        grp.drawString(clkString,10,clkheight- 10);
          
grp.drawString("C-Sharpcorner.com" ,113,300);

       }

Step 4

Define the method of runnable interface. In that the all method of runnable interface is overridden. See the following:

public void start()

      {

        if (thr==null)

          {

            thr=new Thread(this);

            thr.setPriority(Thread.MIN_PRIORITY);

            threadSuspended=false;

            thr.start();

          }

        else

          {

            if(threadSuspended)

              {

                threadSuspended=false;

                synchronized(this)

                  {

                    notify();

                  }

              }

          }

      }

    public void stop()

      {

        threadSuspended=true;

      }

    public void run()

      {

        try

          {

            while(true)

              {

                Calendar clndr=Calendar.getInstance();

                clkhours=clndr.get(Calendar.HOUR_OF_DAY);

                if(clkhours>12)clkhours-=12;

                clkminutes=clndr.get(Calendar.MINUTE);

                clkseconds=clndr.get(Calendar.SECOND);

                SimpleDateFormat frmatter=new SimpleDateFormat("hh:mm:ss", Locale.getDefault());

                Date d=clndr.getTime();

                clkString=frmatter.format(d);

                if(threadSuspended)

                  {

                    synchronized (this)   

                      {

                        while(threadSuspended)

                          {

                            wait();

                          }

                      }  

                  }

                repaint();

                thr.sleep(1000);

              }

          }

Complete code

import java.util.*;

import java.text.*;

import java.applet.*;

import java.awt.*;

public class SimpleAnalogClock extends Applet implements Runnable

  {

    int clkhours=0, clkminutes=0, clkseconds=0;

    String clkString="";

    int clkwidth, clkheight;

    Thread thr=null;

    boolean threadSuspended;

    public void init()

      {

        clkwidth=getSize().width;

        clkheight=getSize().height;

        setBackground(Color.black);

      }

    public void start()

      {

        if (thr==null)

          {

            thr=new Thread(this);

            thr.setPriority(Thread.MIN_PRIORITY);

            threadSuspended=false;

            thr.start();

          }

        else

          {

            if(threadSuspended)

              {

                threadSuspended=false;

                synchronized(this)

                  {

                    notify();

                  }

              }

          }

      }

    public void stop()

      {

        threadSuspended=true;

      }

    public void run()

      {

        try

          {

            while(true)

              {

                Calendar clndr=Calendar.getInstance();

                clkhours=clndr.get(Calendar.HOUR_OF_DAY);

                if(clkhours>12)clkhours-=12;

                clkminutes=clndr.get(Calendar.MINUTE);

                clkseconds=clndr.get(Calendar.SECOND);

                SimpleDateFormat frmatter=new SimpleDateFormat("hh:mm:ss", Locale.getDefault());

                Date d=clndr.getTime();

                clkString=frmatter.format(d);

                if(threadSuspended)

                  {

                    synchronized (this)   

                      {

                        while(threadSuspended)

                          {

                            wait();

                          }

                      }  

                  }

                repaint();

                thr.sleep(1000);

              }

          }  

        catch(Exception e)

        {}

      }

    void drawHand(double angle, int radius, Graphics grp)

      {

        angle-=0.5*Math.PI;

        int a=(int)(radius*Math.cos(angle));

        int b=(int)(radius*Math.sin(angle));

        grp.drawLine(clkwidth/2,clkheight/2,clkwidth/2+a,clkheight/2+b);

      }

    void drawWedge(double angle,int radius, Graphics grp)

      {

        angle-=0.5*Math.PI;

        int a=(int)(radius*Math.cos(angle));

        int b=(int)(radius*Math.sin(angle));

        angle+=2*Math.PI/3;

        int a2=(int)(5*Math.cos(angle));

        int b2=(int)(5*Math.sin(angle));

        angle+=2*Math.PI/3;

        int a3=(int)(5*Math.cos(angle));

        int b3=(int)(5*Math.sin(angle));

        grp.drawLine(clkwidth/2+a2, clkheight/2+b2,clkwidth/2+a,clkheight/2+b);

        grp.drawLine(clkwidth/2+a3, clkheight/2+b3,clkwidth/2+a,clkheight/2+b);

        grp.drawLine(clkwidth/2+a2, clkheight/2+b2,clkwidth/2+a3,clkheight/2+b3);

      }

    public void paint(Graphics grp)

      {

        grp.setColor(Color.gray);

        drawWedge(2*Math.PI*clkhours/12,clkwidth/5,grp);

        drawWedge(2*Math.PI*clkminutes/60,clkwidth/3,grp);

        drawHand(2*Math.PI*clkseconds/60,clkwidth/2,grp);

        grp.setColor(Color.white);

        grp.drawString(clkString,10,clkheight- 10);
          
grp.drawString("C-Sharpcorner.com" ,113,300);

       }
 }

/*
<applet code="SimpleAnalogClock.class" width="350" height="350">
</applet
/

Output

Compilation

fig-1.jpg

After pressing Enter we see the following output, as in the following:

fig-2.jpg

After one minute the clock will show:

fig-3.jpg

Up Next
    Ebook Download
    View all
    Learn
    View all