I write this article because my prior question is closed with wrong answer link.
I couldn't see image on JLabel below code
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();
}