这段代码有什么问题?它在 NetBeans 中工作。我试图在浏览器中打开它,但出现空指针异常错误,可能是因为图像(没有图形它可以工作)。
public class Sth extends JApplet {
private Image img;
@Override
public void init() {
img = getImage(getCodeBase(), "logo.png");
setSize(200,200);
JPanel panel = new JPanel();
panel.setLayout(null);
add(panel);
JLabel cos = new JLabel();
cos.setIcon(new ImageIcon(img));
cos.setBounds(20,20,100,100);
panel.add(cos);
}}