Oploaded billeder i Jlaben
Hej, jeg har problem med at opload billeder på Gui(Label).håber nogle her kan hjælpe :S
jeg får nulExptione.
private ImageIcon image1;
private JLabel jLabel;
public Gui() {
setLayout(new FlowLayout());
image1 = new ImageIcon(getClass().getResource ("HDRPhotographyByAndreasReinhold20.jpg"));
jLabel = new JLabel(image1);
add(jLabel);
}
public static void main(String[] args) {
Gui g = new Gui();
g.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
g.setVisible(true);
g.setTitle("billeder");