Java Javax add image/pic to jpanel label

Java Javax add image/pic to jpanel label
re‮t ref‬o:lautturi.com
BufferedImage myPicture = ImageIO.read(new File("/file/path/pic.png"));
JLabel picLabel = new JLabel(new ImageIcon(myPicture));
add(picLabel);
Created Time:2017-09-30 21:56:35  Author:lautturi