简体   繁体   中英

Display image on JFrame form Java NetBeans

I want to show a image on top this form, but I don't know how. I have tried many times, but I cant find any image container in Toolbox.

Screenshot of JFrame:

https://i.stack.imgur.com/ECVNl.png

but i cant find any image container I

Add an ImageIcon to a JLabel .

Icon icon = new ImageIcon(...);
JLabel label = new JLabel( icon );
frame.add( label );

Read the section from the Swing tutorial on How to Use Icons for a working example.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM