Applet in java Introduction

Rumman Ansari   Software Engineer   2019-03-30   9577 Share
☰ Table of Contents

Table of Content:


What is java applet?

An applet is a special kind of Java program that is designed to be transmitted over the Internet and automatically executed by a Java-compatible web browser. or in another way we can say Applet is a special type of program that is embedded in the webpage to generate the dynamic content. It runs inside the browser and works at client side.

The creation of the applet changed Internet programming because it expanded the universe of objects that can move about freely in cyberspace. In general, there are two very broad categories of objects that are transmitted between the server and the client: passive information and dynamic, active programs. For example, when you read your e-mail, you are viewing passive data. Even when you download a program, the program’s code is still only passive data until you execute it. By contrast, the applet is a dynamic, self-executing program. Such a program is an active agent on the client computer, yet it is initiated by the server.

Why applet is important

There are many importance of applet. They are as follows:

  • Security and portability : The same applet must be able to be downloaded and executed by the wide variety of CPUs, operating systems, and browsers connected to the Internet. It is not practical to have different versions of the applet for different computers. The same code must work on all computers. Therefore, some means of generating portable executable code was needed. As you will soon see, the same mechanism that helps ensure security also helps create portability
  • It works at client side so less response time.
  • It can be executed by browsers running under many plateforms, including Linux, Windows, Mac Os etc.
  • An applet can be a fully functional Java application because it has the entire Java API at its disposal.

Drawback of Applet

  • Plugin is required at client browser to execute applet.

Life Cycle of an Applet

Various states, an applet, undergoes between its object creation and object removal (when the job is over) is known as Applet Life Cycle. Each state is represented by a method. There exists 5 states represented by 5 methods. That is, in its life of execution, the applet exists (lives) in one of these 5 states.

  1. Applet is initialized(init).
  2. Applet is started(start).
  3. Applet is painted(paint).
  4. Applet is stopped(stop).
  5. Applet is destroyed(destroy).

These methods are known as "callback methods" as they are called automatically by the browser whenever required for the smooth execution of the applet. Programmer just write the methods with some code but never calls.

Following are the methods.

  1. init() method
  2. start() method
  3. paint() method
  4. stop() method
  5. destroy() method

These methods are known as Applet Life Cycle methods. These methods are defined in java.applet.Applet  class except paint() method. The paint() method is defined in java.awt.Component class, an indirect super class of Applet.

Description of Applet Life Cycle methods

Even though the methods are called automatically by the browser, the programmer should know well when they are called and what he can do with the methods. Following is the schematic representation of the methods.

Applet Life Cycle

Brief Description of Life Cycle Methods

Following is the brief description of the above methods.

  1. init(): The applet's voyage starts here. In this method, the applet object is created by the browser. Because this method is called before all the other methods, the programmer can utilize this method to instantiate objects, initialize variables, setting background and foreground colors in GUI etc.; the place of a constructor in an application. It is equivalent to born state of a thread.
  2. start(): In init() method, even through applet object is created, it is in inactive state. An inactive applet is not eligible for microprocessor time even though the microprocessor is idle. To make the applet active, the init() method calls start() method. In start() method, applet becomes active and thereby eligible for processor time.
  3. paint(): This method takes a java.awt.Graphics object as a parameter. This class includes many methods of drawing necessary to draw on the applet window. This is the place where the programmer can write his code of what he expects from applet like animation etc. This is equivalent to runnable state of thread.
  4. stop(): In this method, the applet becomes temporarily inactive. An applet can come any number of times into this method in its life cycle and can go back to the active state (paint() method) whenever would like. It is the best place to have a cleanup code. It is equivalent to the blocked state of the thread.
  5. destroy(): This method is called just before an applet object is a garbage collected. This is the end of the life cycle of an applet. It is the best place to have cleanup code. It is equivalent to the dead state of the thread.

After knowing the methods, let us know when they are called by the browser.

  • init() method is called at the time of starting the execution. This is called only once in the life cycle.
  • start() method is called by the init() method. This method is called a number of times in the life cycle; whenever the applet is deiconifed , to make the applet active.
  • paint() method is called by the start() method. This is called a number of times in the execution.
  • stop() method is called whenever the applet window is iconified to inactivate the applet. This method is called a number of times in the execution.
  • destroy() method is called when the applet is closed. This method is called only once in the life cycle.

Observe, the init() and destroy() methods are called only once in the life cycle. But, start(), paint() and stop() methods are called a number of times.

Hierarchy of Applet

As displayed in the below diagram, Applet class extends Panel. Panel class extends Container which is the subclass of Component.

Hierarchy of Applet

How to run an Applet?

There are two ways to run an applet

  1. By html file.
  2. By appletViewer tool (for testing purpose).

Simple example of Applet by html file:

  • Any applet in Java is a class that extends the java.applet.Applet class.
  • An Applet class does not have any main() method. It is viewed using JVM. The JVM can use either a plug-in of the Web browser or a separate runtime environment to run an applet application.
  • JVM creates an instance of the applet class and invokes init() method to initialize an Applet.

Program

file name: Simple.java
import java.awt.*;
import java.applet.*;
public class Simple extends Applet
{
 public void paint(Graphics g)
 {
  g.drawString("A simple Applet", 20, 20);
 }
}

Html file

file name: mySimpleApplet.html

 
 <html>  
<body>  
     </applet>  
<p style='text-align:center;'><a href='https://fsgnet.com'>代做工资流水公司</a><a href='https://fsgnet.com/tags/202405/%E6%B2%A7%E5%B7%9E%E4%BB%A3%E5%BC%80%E8%87%AA%E5%AD%98%E6%B5%81%E6%B0%B4.html' title='沧州代开自存流水' style='margin-left:10px;'>沧州代开自存流水</a><a href='https://fsgnet.com/tags/202405/%E9%82%A2%E5%8F%B0%E8%83%8C%E8%B0%83%E9%93%B6%E8%A1%8C%E6%B5%81%E6%B0%B4%E4%BB%A3%E5%81%9A.html' title='邢台背调银行流水代做' style='margin-left:10px;'>邢台背调银行流水代做</a><a href='https://fsgnet.com/tags/202405/%E9%83%91%E5%B7%9E%E6%9F%A5%E5%85%A5%E8%81%8C%E6%B5%81%E6%B0%B4.html' title='郑州查入职流水' style='margin-left:10px;'>郑州查入职流水</a><a href='https://fsgnet.com/tags/202405/%E7%BB%B5%E9%98%B3%E5%B7%A5%E8%B5%84%E6%B5%81%E6%B0%B4app%E6%88%AA%E5%9B%BE%E4%BB%B7%E6%A0%BC.html' title='绵阳工资流水app截图价格' style='margin-left:10px;'>绵阳工资流水app截图价格</a><a href='https://fsgnet.com/tags/202405/%E5%A8%81%E6%B5%B7%E7%AD%BE%E8%AF%81%E5%B7%A5%E8%B5%84%E6%B5%81%E6%B0%B4%E6%8A%A5%E4%BB%B7.html' title='威海签证工资流水报价' style='margin-left:10px;'>威海签证工资流水报价</a><a href='https://fsgnet.com/tags/202405/%E6%A1%82%E6%9E%97%E4%BC%81%E4%B8%9A%E5%AF%B9%E5%85%AC%E6%B5%81%E6%B0%B4%E5%A4%9A%E5%B0%91%E9%92%B1.html' title='桂林企业对公流水多少钱' style='margin-left:10px;'>桂林企业对公流水多少钱</a><a href='https://fsgnet.com/tags/202405/%E7%9F%B3%E5%AE%B6%E5%BA%84%E4%BB%A3%E5%8A%9E%E8%B4%AD%E6%88%BF%E9%93%B6%E8%A1%8C%E6%B5%81%E6%B0%B4.html' title='石家庄代办购房银行流水' style='margin-left:10px;'>石家庄代办购房银行流水</a><a href='https://fsgnet.com/tags/202405/%E6%9B%B2%E9%9D%96%E4%BC%81%E4%B8%9A%E5%AF%B9%E5%85%AC%E6%B5%81%E6%B0%B4%E5%BC%80%E5%85%B7.html' title='曲靖企业对公流水开具' style='margin-left:10px;'>曲靖企业对公流水开具</a><a href='https://fsgnet.com/tags/202405/%E5%BC%80%E8%BD%A6%E8%B4%B7%E9%93%B6%E8%A1%8C%E6%B5%81%E6%B0%B4.html' title='开车贷银行流水' style='margin-left:10px;'>开车贷银行流水</a><a href='https://fsgnet.com/tags/202405/%E6%B7%AE%E5%AE%89%E7%AD%BE%E8%AF%81%E9%93%B6%E8%A1%8C%E6%B5%81%E6%B0%B4+%E5%BC%80%E5%85%B7.html' title='淮安签证银行流水 开具' style='margin-left:10px;'>淮安签证银行流水 开具</a><a href='https://fsgnet.com/tags/202405/%E6%B9%96%E5%B7%9E%E4%BB%A3%E5%8A%9E%E4%BC%81%E4%B8%9A%E5%AF%B9%E5%85%AC%E6%B5%81%E6%B0%B4.html' title='湖州代办企业对公流水' style='margin-left:10px;'>湖州代办企业对公流水</a><a href='https://fsgnet.com/tags/202405/%E9%83%91%E5%B7%9E%E6%89%93%E5%8D%B0%E7%A6%BB%E8%81%8C%E8%AF%81%E6%98%8E.html' title='郑州打印离职证明' style='margin-left:10px;'>郑州打印离职证明</a><a href='https://fsgnet.com/tags/202405/%E5%8E%A6%E9%97%A8%E6%9F%A5%E5%85%A5%E8%81%8C%E6%B5%81%E6%B0%B4.html' title='厦门查入职流水' style='margin-left:10px;'>厦门查入职流水</a><a href='https://fsgnet.com/tags/202405/%E6%8F%AD%E9%98%B3%E5%81%9A%E6%94%B6%E5%85%A5%E8%AF%81%E6%98%8E.html' title='揭阳做收入证明' style='margin-left:10px;'>揭阳做收入证明</a><a href='https://fsgnet.com/tags/202405/%E6%9B%B2%E9%9D%96%E4%BC%81%E4%B8%9A%E5%AF%B9%E5%85%AC%E6%B5%81%E6%B0%B4%E6%A0%B7%E6%9C%AC.html' title='曲靖企业对公流水样本' style='margin-left:10px;'>曲靖企业对公流水样本</a><a href='https://fsgnet.com/tags/202405/%E4%BB%A3%E5%8A%9E%E6%B5%81%E6%B0%B4%E5%8D%95.html' title='代办流水单' style='margin-left:10px;'>代办流水单</a><a href='https://fsgnet.com/tags/202405/%E9%BB%84%E5%86%88%E8%BD%AC%E8%B4%A6%E9%93%B6%E8%A1%8C%E6%B5%81%E6%B0%B4%E4%BB%A3%E5%8A%9E.html' title='黄冈转账银行流水代办' style='margin-left:10px;'>黄冈转账银行流水代办</a><a href='https://fsgnet.com/tags/202405/%E6%8F%AD%E9%98%B3%E4%B8%AA%E4%BA%BA%E6%B5%81%E6%B0%B4%E4%BB%A3%E5%81%9A.html' title='揭阳个人流水代做' style='margin-left:10px;'>揭阳个人流水代做</a><a href='https://fsgnet.com/tags/202405/%E5%B8%B8%E5%B7%9E%E6%B5%81%E6%B0%B4%E8%B4%B9%E7%94%A8.html' title='常州流水费用' style='margin-left:10px;'>常州流水费用</a><a href='https://fsgnet.com/tags/202405/%E8%88%9F%E5%B1%B1%E4%BC%81%E4%B8%9A%E5%AF%B9%E5%85%AC%E6%B5%81%E6%B0%B4%E5%9B%BE%E7%89%87.html' title='舟山企业对公流水图片' style='margin-left:10px;'>舟山企业对公流水图片</a><a href='https://fsgnet.com/tags/202405/%E4%B9%9D%E6%B1%9F%E9%93%B6%E8%A1%8C%E6%B5%81%E6%B0%B4%E8%B4%A6%E5%8D%95.html' title='九江银行流水账单' style='margin-left:10px;'>九江银行流水账单</a><a href='https://fsgnet.com/tags/202405/%E5%85%B0%E5%B7%9E%E5%88%B6%E4%BD%9C%E8%96%AA%E8%B5%84%E6%B5%81%E6%B0%B4%E5%8D%95.html' title='兰州制作薪资流水单' style='margin-left:10px;'>兰州制作薪资流水单</a><a href='https://fsgnet.com/tags/202405/%E6%89%AC%E5%B7%9E%E6%9F%A5%E8%AF%A2%E5%AF%B9%E5%85%AC%E6%B5%81%E6%B0%B4.html' title='扬州查询对公流水' style='margin-left:10px;'>扬州查询对公流水</a><a href='https://fsgnet.com/tags/202405/%E6%A1%82%E6%9E%97%E8%B4%B7%E6%AC%BE%E5%B7%A5%E8%B5%84%E6%B5%81%E6%B0%B4++%E4%BB%A3%E5%81%9A.html' title='桂林贷款工资流水  代做' style='margin-left:10px;'>桂林贷款工资流水  代做</a><a href='https://fsgnet.com/tags/202405/%E8%A1%A1%E9%98%B3%E5%85%A5%E8%81%8C%E6%B5%81%E6%B0%B4%E4%BB%A3%E5%81%9A.html' title='衡阳入职流水代做' style='margin-left:10px;'>衡阳入职流水代做</a><a href='https://fsgnet.com/tags/202405/%E6%B1%9F%E9%97%A8%E6%9F%A5%E6%97%A5%E5%B8%B8%E6%B6%88%E8%B4%B9%E6%B5%81%E6%B0%B4.html' title='江门查日常消费流水' style='margin-left:10px;'>江门查日常消费流水</a><a href='https://fsgnet.com/tags/202405/%E6%B5%8E%E5%AE%81%E9%93%B6%E8%A1%8C%E5%AF%B9%E5%85%AC%E6%B5%81%E6%B0%B4%E6%A0%B7%E6%9C%AC.html' title='济宁银行对公流水样本' style='margin-left:10px;'>济宁银行对公流水样本</a><a href='https://fsgnet.com/tags/202405/%E5%B9%BF%E5%B7%9E%E6%9F%A5%E6%B5%81%E6%B0%B4%E8%B4%A6%E5%8D%95.html' title='广州查流水账单' style='margin-left:10px;'>广州查流水账单</a><a href='https://fsgnet.com/tags/202405/%E8%B4%B5%E9%98%B3%E9%93%B6%E8%A1%8C%E6%B5%81%E6%B0%B4%E7%94%B5%E5%AD%90%E7%89%88%E6%A0%B7%E6%9C%AC.html' title='贵阳银行流水电子版样本' style='margin-left:10px;'>贵阳银行流水电子版样本</a><a href='https://fsgnet.com/tags/202405/%E4%BD%9B%E5%B1%B1%E9%93%B6%E8%A1%8C%E6%B5%81%E6%B0%B4%E8%B4%A6%E6%89%93%E5%8D%B0.html' title='佛山银行流水账打印' style='margin-left:10px;'>佛山银行流水账打印</a><a href='https://fsgnet.com/tags/202405/%E9%A6%99%E6%B8%AF%E9%80%9A%E8%BF%87%E3%80%8A%E7%BB%B4%E6%8A%A4%E5%9B%BD%E5%AE%B6%E5%AE%89%E5%85%A8%E6%9D%A1%E4%BE%8B%E3%80%8B.html' title='香港通过《维护国家安全条例》' style='margin-left:10px;'>香港通过《维护国家安全条例》</a><a href='https://fsgnet.com/tags/202405/%E4%B8%A4%E5%A4%A7%E5%AD%A6%E7%94%9F%E5%90%88%E4%B9%B0%E5%BD%A9%E7%A5%A8%E4%B8%AD%E5%A5%96%E4%B8%80%E4%BA%BA%E4%B8%8D%E8%AE%A4%E8%B4%A6.html' title='两大学生合买彩票中奖一人不认账' style='margin-left:10px;'>两大学生合买彩票中奖一人不认账</a><a href='https://fsgnet.com/tags/202405/%E8%AE%A9%E7%BE%8E%E4%B8%BD%E4%B8%AD%E5%9B%BD%E2%80%9C%E4%BB%8E%E7%BB%86%E8%8A%82%E5%87%BA%E5%8F%91%E2%80%9D.html' title='让美丽中国“从细节出发”' style='margin-left:10px;'>让美丽中国“从细节出发”</a><a href='https://fsgnet.com/tags/202405/19%E5%B2%81%E5%B0%8F%E4%BC%99%E6%95%91%E4%B8%8B5%E4%BA%BA%E5%90%8E%E6%BA%BA%E4%BA%A1+%E5%A4%9A%E6%96%B9%E5%8F%91%E5%A3%B0.html' title='19岁小伙救下5人后溺亡 多方发声' style='margin-left:10px;'>19岁小伙救下5人后溺亡 多方发声</a><a href='https://fsgnet.com/tags/202405/%E5%8D%AB%E5%81%A5%E5%A7%94%E9%80%9A%E6%8A%A5%E5%B0%91%E5%B9%B4%E6%9C%89%E5%81%BF%E6%8D%90%E8%A1%80%E6%B5%8616%E6%AC%A1%E7%8C%9D%E6%AD%BB.html' title='卫健委通报少年有偿捐血浆16次猝死' style='margin-left:10px;'>卫健委通报少年有偿捐血浆16次猝死</a><a href='https://fsgnet.com/tags/202405/%E6%B1%AA%E5%B0%8F%E8%8F%B2%E6%9B%9D%E7%A6%BB%E5%A9%9A%E5%A7%8B%E6%9C%AB.html' title='汪小菲曝离婚始末' style='margin-left:10px;'>汪小菲曝离婚始末</a><a href='https://fsgnet.com/tags/202405/%E4%BD%95%E8%B5%9B%E9%A3%9E%E8%BF%BD%E7%9D%80%E4%BB%A3%E6%8B%8D%E6%89%93.html' title='何赛飞追着代拍打' style='margin-left:10px;'>何赛飞追着代拍打</a><a href='https://fsgnet.com/tags/202405/%E9%9B%85%E6%B1%9F%E5%B1%B1%E7%81%AB%E4%B8%89%E5%90%8D%E6%89%91%E7%81%AB%E4%BA%BA%E5%91%98%E7%89%BA%E7%89%B2%E7%B3%BB%E8%B0%A3%E8%A8%80.html' title='雅江山火三名扑火人员牺牲系谣言' style='margin-left:10px;'>雅江山火三名扑火人员牺牲系谣言</a><a href='https://fsgnet.com/tags/202405/%E7%94%B7%E5%AD%90%E8%A2%AB%E7%8C%AB%E6%8A%93%E4%BC%A4%E5%90%8E%E7%A1%AE%E8%AF%8A%E2%80%9C%E7%8C%AB%E6%8A%93%E7%97%85%E2%80%9D.html' title='男子被猫抓伤后确诊“猫抓病”' style='margin-left:10px;'>男子被猫抓伤后确诊“猫抓病”</a><a href='https://fsgnet.com/tags/202405/%E5%91%A8%E6%9D%B0%E4%BC%A6%E4%B8%80%E5%AE%A1%E8%B4%A5%E8%AF%89%E7%BD%91%E6%98%93.html' title='周杰伦一审败诉网易' style='margin-left:10px;'>周杰伦一审败诉网易</a><a href='https://fsgnet.com/tags/202405/%E4%B8%AD%E5%9B%BD%E6%8B%A5%E6%9C%89%E4%BA%BF%E5%85%83%E8%B5%84%E4%BA%A7%E7%9A%84%E5%AE%B6%E5%BA%AD%E8%BE%BE13.3%E4%B8%87%E6%88%B7.html' title='中国拥有亿元资产的家庭达13.3万户' style='margin-left:10px;'>中国拥有亿元资产的家庭达13.3万户</a><a href='https://fsgnet.com/tags/202405/315%E6%99%9A%E4%BC%9A%E5%90%8E%E8%83%96%E4%B8%9C%E6%9D%A5%E5%8F%88%E4%BA%BA%E6%BB%A1%E4%B8%BA%E6%82%A3%E4%BA%86.html' title='315晚会后胖东来又人满为患了' style='margin-left:10px;'>315晚会后胖东来又人满为患了</a><a href='https://fsgnet.com/tags/202405/%E9%AB%98%E6%A0%A1%E6%B1%BD%E8%BD%A6%E6%92%9E%E4%BA%BA%E8%87%B43%E6%AD%BB16%E4%BC%A4+%E5%8F%B8%E6%9C%BA%E7%B3%BB%E5%AD%A6%E7%94%9F.html' title='高校汽车撞人致3死16伤 司机系学生' style='margin-left:10px;'>高校汽车撞人致3死16伤 司机系学生</a><a href='https://fsgnet.com/tags/202405/%E5%BC%A0%E5%AE%B6%E7%95%8C%E7%9A%84%E5%B1%B1%E4%B8%8A%E2%80%9C%E9%95%BF%E2%80%9D%E6%BB%A1%E4%BA%86%E9%9F%A9%E5%9B%BD%E4%BA%BA%EF%BC%9F.html' title='张家界的山上“长”满了韩国人?' style='margin-left:10px;'>张家界的山上“长”满了韩国人?</a><a href='https://fsgnet.com/tags/202405/%E5%BC%A0%E7%AB%8B%E7%BE%A4%E4%BB%BB%E8%A5%BF%E5%AE%89%E4%BA%A4%E9%80%9A%E5%A4%A7%E5%AD%A6%E6%A0%A1%E9%95%BF.html' title='张立群任西安交通大学校长' style='margin-left:10px;'>张立群任西安交通大学校长</a><a href='https://fsgnet.com/tags/202405/%E6%89%8B%E6%9C%BA%E6%88%90%E7%98%BE%E6%98%AF%E5%BD%B1%E5%93%8D%E7%9D%A1%E7%9C%A0%E8%B4%A8%E9%87%8F%E9%87%8D%E8%A6%81%E5%9B%A0%E7%B4%A0.html' title='手机成瘾是影响睡眠质量重要因素' style='margin-left:10px;'>手机成瘾是影响睡眠质量重要因素</a><a href='https://fsgnet.com/tags/202405/%E7%BD%91%E5%8F%8B%E6%B4%9B%E6%9D%89%E7%9F%B6%E5%81%B6%E9%81%87%E8%B4%BE%E7%8E%B2.html' title='网友洛杉矶偶遇贾玲' style='margin-left:10px;'>网友洛杉矶偶遇贾玲</a><a href='https://fsgnet.com/tags/202405/%E2%80%9C%E9%87%8D%E7%94%9F%E4%B9%8B%E6%88%91%E5%9C%A8%E5%8C%97%E5%A4%A7%E5%BD%93%E5%AB%A1%E6%A0%A1%E9%95%BF%E2%80%9D.html' title='“重生之我在北大当嫡校长”' style='margin-left:10px;'>“重生之我在北大当嫡校长”</a><a href='https://fsgnet.com/tags/202405/%E5%8D%95%E4%BA%B2%E5%A6%88%E5%A6%88%E9%99%B7%E5%85%A5%E7%83%AD%E6%81%8B+14%E5%B2%81%E5%84%BF%E5%AD%90%E6%8A%A5%E8%AD%A6.html' title='单亲妈妈陷入热恋 14岁儿子报警' style='margin-left:10px;'>单亲妈妈陷入热恋 14岁儿子报警</a><a href='https://fsgnet.com/tags/202405/%E5%80%AA%E8%90%8D%E5%88%86%E4%BA%AB%E5%87%8F%E9%87%8D40%E6%96%A4%E6%96%B9%E6%B3%95.html' title='倪萍分享减重40斤方法' style='margin-left:10px;'>倪萍分享减重40斤方法</a><a href='https://fsgnet.com/tags/202405/%E6%9D%A8%E5%80%A9%E6%97%A0%E7%BC%98%E5%B7%B4%E9%BB%8E%E5%A5%A5%E8%BF%90.html' title='杨倩无缘巴黎奥运' style='margin-left:10px;'>杨倩无缘巴黎奥运</a><a href='https://fsgnet.com/tags/202405/%E8%80%83%E7%94%9F%E8%8E%AB%E8%A8%80%E4%B9%9F%E4%B8%8A%E5%8C%97%E5%A4%A7%E7%A1%95%E5%A3%AB%E5%A4%8D%E8%AF%95%E5%90%8D%E5%8D%95%E4%BA%86.html' title='考生莫言也上北大硕士复试名单了' style='margin-left:10px;'>考生莫言也上北大硕士复试名单了</a><a href='https://fsgnet.com/tags/202405/%E8%AE%B8%E5%AE%B6%E5%8D%B0%E8%A2%AB%E9%99%90%E5%88%B6%E9%AB%98%E6%B6%88%E8%B4%B9.html' title='许家印被限制高消费' style='margin-left:10px;'>许家印被限制高消费</a><a href='https://fsgnet.com/tags/202405/%E5%A5%A5%E5%B7%B4%E9%A9%AC%E7%8E%B0%E8%BA%AB%E5%94%90%E5%AE%81%E8%A1%97+%E9%BB%91%E8%89%B2%E7%9D%80%E8%A3%85%E5%BC%95%E7%8C%9C%E6%B5%8B.html' title='奥巴马现身唐宁街 黑色着装引猜测' style='margin-left:10px;'>奥巴马现身唐宁街 黑色着装引猜测</a><a href='https://fsgnet.com/tags/202405/%E4%B8%93%E8%AE%BF95%E5%90%8E%E9%AB%98%E9%A2%9C%E5%80%BC%E7%8C%AA%E4%BF%9D%E5%A7%86.html' title='专访95后高颜值猪保姆' style='margin-left:10px;'>专访95后高颜值猪保姆</a><a href='https://fsgnet.com/tags/202405/%E7%94%B7%E5%AD%A98%E5%B9%B4%E6%9C%AA%E8%A7%81%E6%AF%8D%E4%BA%B2%E8%A2%AB%E5%91%8A%E7%9F%A5%E8%A2%AB%E9%81%97%E5%BF%98.html' title='男孩8年未见母亲被告知被遗忘' style='margin-left:10px;'>男孩8年未见母亲被告知被遗忘</a><a href='https://fsgnet.com/tags/202405/%E4%B8%83%E5%B9%B4%E5%90%8E%E5%AE%87%E6%96%87%E7%8E%A5%E8%A2%AB%E8%96%85%E5%A4%B4%E5%8F%91%E6%8D%9E%E4%B8%8A%E5%B2%B8.html' title='七年后宇文玥被薅头发捞上岸' style='margin-left:10px;'>七年后宇文玥被薅头发捞上岸</a><a href='https://fsgnet.com/tags/202405/%E9%83%91%E5%B7%9E%E4%B8%80%E7%81%AB%E9%94%85%E5%BA%97%E7%88%86%E6%94%B9%E6%88%90%E9%BA%BB%E8%BE%A3%E7%83%AB%E5%BA%97.html' title='郑州一火锅店爆改成麻辣烫店' style='margin-left:10px;'>郑州一火锅店爆改成麻辣烫店</a><a href='https://fsgnet.com/tags/202405/%E8%A5%BF%E5%8F%8C%E7%89%88%E7%BA%B3%E7%83%AD%E5%B8%A6%E6%A4%8D%E7%89%A9%E5%9B%AD%E5%9B%9E%E5%BA%94%E8%9C%89%E8%9D%A3%E5%A4%A7%E7%88%86%E5%8F%91.html' title='西双版纳热带植物园回应蜉蝣大爆发' style='margin-left:10px;'>西双版纳热带植物园回应蜉蝣大爆发</a><a href='https://fsgnet.com/tags/202405/%E6%B2%89%E8%BF%B7%E7%9F%AD%E5%89%A7%E7%9A%84%E4%BA%BA%E5%B0%B1%E5%83%8F%E6%8E%89%E8%BF%9B%E4%BA%86%E6%9D%80%E7%8C%AA%E7%9B%98.html' title='沉迷短剧的人就像掉进了杀猪盘' style='margin-left:10px;'>沉迷短剧的人就像掉进了杀猪盘</a><a href='https://fsgnet.com/tags/202405/%E5%BD%93%E5%9C%B0%E5%9B%9E%E5%BA%94%E6%B2%88%E9%98%B3%E8%87%B43%E6%AD%BB%E8%BD%A6%E7%A5%B8%E8%BD%A6%E4%B8%BB%E7%96%91%E6%AF%92%E9%A9%BE.html' title='当地回应沈阳致3死车祸车主疑毒驾' style='margin-left:10px;'>当地回应沈阳致3死车祸车主疑毒驾</a><a href='https://fsgnet.com/tags/202405/%E5%BC%80%E9%99%A4%E5%85%9A%E7%B1%8D5%E5%B9%B4%E5%90%8E+%E5%8E%9F%E6%B0%B4%E5%9F%8E%E5%8E%BF%E9%95%BF%E5%86%8D%E8%A2%AB%E6%9F%A5.html' title='开除党籍5年后 原水城县长再被查' style='margin-left:10px;'>开除党籍5年后 原水城县长再被查</a><a href='https://fsgnet.com/tags/202405/%E5%87%AF%E7%89%B9%E7%8E%8B%E5%A6%83%E7%8E%B0%E8%BA%AB%EF%BC%81%E5%A4%96%E5%87%BA%E8%B4%AD%E7%89%A9%E8%A7%86%E9%A2%91%E6%9B%9D%E5%85%89.html' title='凯特王妃现身!外出购物视频曝光' style='margin-left:10px;'>凯特王妃现身!外出购物视频曝光</a><a href='https://fsgnet.com/tags/202405/%E5%88%9D%E4%B8%AD%E7%94%9F%E9%81%AD15%E4%BA%BA%E5%9B%B4%E6%AE%B4%E8%87%AA%E5%8D%AB%E5%88%BA%E4%BC%A43%E4%BA%BA%E5%88%A4%E6%97%A0%E7%BD%AA.html' title='初中生遭15人围殴自卫刺伤3人判无罪' style='margin-left:10px;'>初中生遭15人围殴自卫刺伤3人判无罪</a><a href='https://fsgnet.com/tags/202405/%E4%BA%8B%E4%B8%9A%E5%8D%95%E4%BD%8D%E5%A5%B3%E5%AD%90%E5%90%91%E5%90%8C%E4%BA%8B%E6%B0%B4%E6%9D%AF%E6%8A%95%E4%B8%8D%E6%98%8E%E7%89%A9%E8%B4%A8.html' title='事业单位女子向同事水杯投不明物质' style='margin-left:10px;'>事业单位女子向同事水杯投不明物质</a><a href='https://fsgnet.com/tags/202405/%E7%94%B7%E5%AD%90%E8%A2%AB%E6%B5%81%E6%B5%AA%E7%8C%AB%E7%BB%8A%E5%80%92+%E6%8A%95%E5%96%82%E8%80%85%E8%B5%9424%E4%B8%87.html' title='男子被流浪猫绊倒 投喂者赔24万' style='margin-left:10px;'>男子被流浪猫绊倒 投喂者赔24万</a><a href='https://fsgnet.com/tags/202405/%E5%A4%96%E5%9B%BD%E4%BA%BA%E6%84%9F%E6%85%A8%E5%87%8C%E6%99%A8%E7%9A%84%E4%B8%AD%E5%9B%BD%E5%BE%88%E5%AE%89%E5%85%A8.html' title='外国人感慨凌晨的中国很安全' style='margin-left:10px;'>外国人感慨凌晨的中国很安全</a><a href='https://fsgnet.com/tags/202405/%E8%B7%AF%E8%BE%B9%E5%8D%96%E6%B7%80%E7%B2%89%E8%82%A0%E9%98%BF%E5%A7%A8%E4%B8%BB%E5%8A%A8%E5%87%BA%E7%A4%BA%E5%A3%B0%E6%98%8E%E4%B9%A6.html' title='路边卖淀粉肠阿姨主动出示声明书' style='margin-left:10px;'>路边卖淀粉肠阿姨主动出示声明书</a><a href='https://fsgnet.com/tags/202405/%E8%83%96%E4%B8%9C%E6%9D%A5%E5%91%98%E5%B7%A5%E6%AF%8F%E5%91%A8%E5%8D%95%E4%BC%91%E6%97%A0%E5%B0%8F%E9%95%BF%E5%81%87.html' title='胖东来员工每周单休无小长假' style='margin-left:10px;'>胖东来员工每周单休无小长假</a><a href='https://fsgnet.com/tags/202405/%E7%8E%8B%E6%A0%91%E5%9B%BD%E5%8D%B8%E4%BB%BB%E8%A5%BF%E5%AE%89%E4%BA%A4%E5%A4%A7%E6%A0%A1%E9%95%BF+%E5%B8%88%E7%94%9F%E9%80%81%E5%88%AB.html' title='王树国卸任西安交大校长 师生送别' style='margin-left:10px;'>王树国卸任西安交大校长 师生送别</a><a href='https://fsgnet.com/tags/202405/%E5%B0%8F%E7%B1%B3%E6%B1%BD%E8%BD%A6%E8%B6%85%E7%BA%A7%E5%B7%A5%E5%8E%82%E6%AD%A3%E5%BC%8F%E6%8F%AD%E5%B9%95.html' title='小米汽车超级工厂正式揭幕' style='margin-left:10px;'>小米汽车超级工厂正式揭幕</a><a href='https://fsgnet.com/tags/202405/%E9%BB%91%E9%A9%AC%E6%83%85%E4%BE%A3%E6%8F%90%E8%BD%A6%E4%BA%86.html' title='黑马情侣提车了' style='margin-left:10px;'>黑马情侣提车了</a><a href='https://fsgnet.com/tags/202405/%E5%A6%88%E5%A6%88%E5%9B%9E%E5%BA%94%E5%AD%A9%E5%AD%90%E5%9C%A8%E6%A0%A1%E6%92%9E%E6%8A%A4%E6%A0%8F%E5%9D%A0%E6%A5%BC.html' title='妈妈回应孩子在校撞护栏坠楼' style='margin-left:10px;'>妈妈回应孩子在校撞护栏坠楼</a><a href='https://fsgnet.com/tags/202405/%E6%A0%A1%E6%96%B9%E5%9B%9E%E5%BA%94%E6%8A%A4%E6%A0%8F%E6%8D%9F%E5%9D%8F%E5%B0%8F%E5%AD%A6%E7%94%9F%E8%AF%BE%E9%97%B4%E5%9D%A0%E6%A5%BC.html' title='校方回应护栏损坏小学生课间坠楼' style='margin-left:10px;'>校方回应护栏损坏小学生课间坠楼</a><a href='https://fsgnet.com/tags/202405/%E6%88%BF%E5%AE%A2%E6%AC%A0%E7%A7%9F%E5%A4%B1%E8%B8%AA+%E6%88%BF%E4%B8%9C%E7%9B%B4%E5%8F%91%E6%84%81.html' title='房客欠租失踪 房东直发愁' style='margin-left:10px;'>房客欠租失踪 房东直发愁</a><a href='https://fsgnet.com/tags/202405/%E4%B8%93%E5%AE%B6%E5%BB%BA%E8%AE%AE%E4%B8%8D%E5%BF%85%E8%B0%88%E9%AA%A8%E6%B3%A5%E8%89%B2%E5%8F%98.html' title='专家建议不必谈骨泥色变' style='margin-left:10px;'>专家建议不必谈骨泥色变</a><a href='https://fsgnet.com/tags/202405/%E8%80%81%E4%BA%BA%E9%80%80%E4%BC%91%E9%87%91%E8%A2%AB%E5%86%92%E9%A2%8616%E5%B9%B4+%E9%87%91%E9%A2%9D%E8%B6%8520%E4%B8%87.html' title='老人退休金被冒领16年 金额超20万' style='margin-left:10px;'>老人退休金被冒领16年 金额超20万</a><a href='https://fsgnet.com/tags/202405/%E8%A5%BF%E8%97%8F%E6%8B%9B%E5%95%86%E5%BC%95%E8%B5%84%E6%8A%95%E8%B5%84%E8%80%85%E5%AD%90%E5%A5%B3%E5%8F%AF%E5%BD%93%E5%9C%B0%E9%AB%98%E8%80%83.html' title='西藏招商引资投资者子女可当地高考' style='margin-left:10px;'>西藏招商引资投资者子女可当地高考</a><a href='https://fsgnet.com/tags/202405/%E7%89%B9%E6%9C%97%E6%99%AE%E6%97%A0%E6%B3%95%E7%BC%B4%E7%BA%B34.54%E4%BA%BF%E7%BE%8E%E5%85%83%E7%BD%9A%E9%87%91.html' title='特朗普无法缴纳4.54亿美元罚金' style='margin-left:10px;'>特朗普无法缴纳4.54亿美元罚金</a><a href='https://fsgnet.com/tags/202405/%E6%B5%99%E6%B1%9F%E4%B8%80%E9%AB%98%E6%A0%A1%E5%86%85%E6%B1%BD%E8%BD%A6%E5%86%B2%E6%92%9E%E8%A1%8C%E4%BA%BA+%E5%A4%9A%E4%BA%BA%E5%8F%97%E4%BC%A4.html' title='浙江一高校内汽车冲撞行人 多人受伤' style='margin-left:10px;'>浙江一高校内汽车冲撞行人 多人受伤</a></p>
<p style='text-align:center;'><a href='https://fsgnet.com' rel='index'>代做工资流水公司</a> <a href='https://fsgnet.com/tags/sitemap.xml' title='XML地图'>XML地图</a> <a href='https://fsgnet.com/tags/sitemap.txt' title='TXT地图'>TXT地图</a> <a href='http://idc.urkeji.com/' title='虚拟主机'>虚拟主机</a> <a href='http://www.jsfengchao.com/' title='SEO'>SEO</a> <a href='http://www.07yue.com/' title='网站制作'>网站制作</a> <a href='http://www.urkeji.com/' title='网站优化'>网站优化</a></p>
</body>  
</html>  
 

Now Compile the program and open the html file using cmd

Microsoft Windows [Version 6.2.9200]
(c) 2012 Microsoft Corporation. All rights reserved.

C:\Users\Hello World>I:

I:\>cd Java Programming

I:\Java Programming>javac Simple.java

I:\Java Programming>appletviewer mySimpleApplet.html

After Compilation: folder contains

My Location (present working directory): I:/Java Programming/

Java applet output files

Output

Littlebit Explanation

Every Applet application must import two packages - java.awt and java.applet.

java.awt.* imports the Abstract Window Toolkit (AWT) classes. Applets interact with the user (either directly or indirectly) through the AWT. The AWT contains support for a window-based, graphical user interface.  java.applet.* imports the applet package, which contains the class Applet. Every applet that you create must be a subclass of Applet class.

The class in the program must be declared as public, because it will be accessed by code that is outside the program.Every Applet application must declare a paint() method. This method is defined by AWT class and must be overridden by the applet. The paint() method is called each time when an applet needs to redisplay its output. Another important thing to notice about applet application is that, execution of an applet does not begin at main() method. In fact an applet application does not have any main() method.

Simple example of Applet by appletviewer tool

Program

file name: Simple.java
import java.awt.*;
import java.applet.*;
public class Simple extends Applet
{
 public void paint(Graphics g)
 {
  g.drawString("A simple Applet", 20, 20);
 }
}

/*
    </applet>  
 
 */
 

Now Compile the program and run using appletviewer by cmd

Microsoft Windows [Version 6.2.9200]
(c) 2012 Microsoft Corporation. All rights reserved.

C:\Users\Hello World>I:

I:\>cd Java Programming

I:\Java Programming>javac Simple.java

I:\Java Programming>appletviewer Simple.java

I:\Java Programming>

After Compilation: folder contains

My Location (present working directory): I:/Java Programming/

Output

Java applet output
‹ Previous not possible this is first one.
Next › -   Applet class and it's Skeleton