Here you can find the source of loadImageIcon(byte bytes[], String descr)
public static ImageIcon loadImageIcon(byte bytes[], String descr)
//package com.java2s; import javax.swing.ImageIcon; public class Main { public static ImageIcon loadImageIcon(byte bytes[], String descr) { ImageIcon image = new ImageIcon(bytes, descr); return image; }/*ww w . j ava 2 s . c o m*/ }