put applet into web page

<applet width="200" height="200" archive="ImageIconApplet.jar" code="com.whitefang34.ImageIconApplet" /> 


package com.whitefang34;

public class ImageIconApplet extends JApplet {
    public void init() {
        URL url = getClass().getResource("/images/WhiteFang34.jpg");
        ImageIcon icon = new ImageIcon(url);
        JLabel label = new JLabel(icon, JLabel.CENTER);
        add(label);
    }
}




你可能感兴趣的:(put applet into web page)