JDBC

JDBC (Java Database Connectivity) is an API (Application Programming Interface) in Java that allows Java programs to interact with databases. It provides a standard set … Read more

Applet mouse event handling

APPLET MOUSE EVENT: import java.awt.*; import java.awt.event.*; import java.applet.*; public class MouseApplet extends Applet implements MouseMotionListener{         public void init(){                     addMouseMotionListener(this);                     setBackground(Color.WHITE);                     … Read more

Applet digital clock

APPLET DIGITAL CLOCK: import java.applet.*;  import java.awt.*;  import java.util.*;  import java.text.*;    public class AppletDigitalClock extends Applet implements Runnable {       Thread th = … Read more

Applet image display

APPLET IMAGE DISPLAY: import java.awt.*; import java.applet.*;     public class AppletDisplayImage extends Applet {  Image picture;  public void init() { picture = getImage (getDocumentBase(), http://nebula.wsimg.com/a418036bd85efa32bdb96f5dbb77e203?AccessKeyId=F7C1E0F1DEF38C4D96C2&disposition=0&alloworigin=1 … Read more

Graphics in Applet

APPLET GRAPHICS: import java.applet.Applet; import java.awt.*; public class Graphic extends Applet{ public void paint(Graphics g){ g.setColor(Color.yellow); g.fillRect(0,0,200,30); g.setColor(Color.black); g.drawString(“Namashkar”,50, 50); g.setColor(Color.red); g.drawLine(200,30,200,300); g.setColor(Color.green); g.drawOval(0,100,200,30); g.setColor(Color.gray); … Read more

Applets life cycle

APPLETS LIFE CYCLE: Applet life cycle means the various states through which applet passes during its object creation and removal. Each state is a method. … Read more

Writing applets

WRITING  APPLETS: An applet is a Java program written in a special format to have a graphical user interface, which allows a user to interact … Read more