I'm new to java, actually i want to display friend list with their images in swing app. which component should i use?
Thanks
You could use a JList
or JTable
to achieve this.
Take a look How to Use Lists and How to Use Tables for more details
Try JLabel.
Image image = GenerateImage.toImage(true); //this generates an image file
JLabel thumb = new JLabel();
thumb.setIcon(image)
See this page for more guidance: Java: how to add image to Jlabel?