Dear Friends:
I can use JLabel to display Icon with cat.GIF or cat.JPG format, but cannot display cat.bmp Format, why??
For example,
I define
JLabel jlabel = new JLabel();
then I can display:
jlabel.setIcon(new ImageIcon("images/cat.GIF"));
to display Cat image, but if I use
jlabel.setIcon(new ImageIcon("images/cat.bmp"));
so thiere is nothing to display, why??
How to display images/cat.bmp ??
Please help
Thanks so much
sunny