import java.applet.Applet; import java.awt.*; import java.net.*; public class ImageView extends Applet { Image theImage; public void init() { try { URL u = new URL(getCodeBase(), getParameter("Image")); theImage = getImage(u); } catch (MalformedURLException e) { System.err.println(e); } } public void paint (Graphics g) { g.drawImage(theImage, 0, 0, this); } }