Java : les applets

Une applet est chargée par l'intermédiaire d'une page Web.

Certains clients Web sur une architecture donnée, ne peuvent pas interpréter du byte code Java (exemple Netscape 1.1. N, Internet Explorer 2.1)

Certains clients Web peuvent interpréter du byte code Java (hotjava, Netscape 2.0, Internet Explorer 3.0, ...)

appletviewer interprète les applets : la partie applet du fichier HTML.

Première applet : son code

Soit la page HTML (fichier hello.html):

<html> <head><title>Ma page JMF</title></head>

<body> <h1>Bienvenue sur cette nouvelle page</h1>

<applet code="hello.class" width=300 height=200> </applet>

</body>

</html>

exemple l'applet :

ou encore