|
JAVA
Applet
An applet is a program written
in the JavaTM programming language that can be included
in an HTML page, much in the same way an image is included.
When you use a Java technology-enabled browser to view
a page that contains an applet, the applet's code is
transferred to your system and executed by the browser's
Java Virtual Machine (JVM).
Here is an example of a simple
APPLET tag:
<applet code="SampleApplet.class"
width=100 height=140></applet>
Sample HTML with JAVA Applet
<html>
<head>
<title>PHP Test</title>
<meta http-equiv="Content-Type" content="text/html;
charset=euc-kr">
</head>
<body>
<applet code="SampleApplet.class"
width=100 height=140></applet>
</body>
</html>
|