See also e551 精简的Applet.

    Image image;
    public void init() {
        // Load image
        image = getImage(getDocumentBase(), "http://hostname/image.gif");
    }
    public void paint(Graphics g) {
        // Draw image
        g.drawImage(image, 0, 0, this);
    }

 

Related Examples

相关文章: