import java.awt.*; import java.awt.event.*; import java.applet.*; import java.net.*; import java.io.*; public class MonApplet extends java.applet.Applet { //Initialize the applet public void init() { } //Start the applet public void start() { // on récupère l'url à afficher String url = getParameter("url"); try { // si l'URL à l'air correcte if (url != null) { // demande au navigateur qu'il l'affiche dans la frame principale URL newURL = new URL(url); getAppletContext().showDocument(newURL, "main"); } } catch (MalformedURLException e) { // l'URL n'est pas correcte System.err.println("L'URL "+url+" n'est pas correcte"); } } //Stop the applet public void stop() { } //Destroy the applet public void destroy() { } }