首页 > 解决方案 > ImageIcon 没有出现在 JLabel 或 JButton 上

问题描述

我想穿上or ,但它没有出现在程序上ImageJButtonJLabel

import javax.swing.*;

public class JButtonEx extends JFrame{

JButtonEx() {
    setSize(300,300);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    JLabel label = new JLabel(new ImageIcon("network/star.png"));
    add(label);
    setVisible(true);
}

public static void main(String[] args) {
    new JButtonEx();
}
}

标签: javaimageswingembedded-resourceimageicon

解决方案


推荐阅读