gpt4 book ai didi

java - 在JFrame中添加图像: Java

转载 作者:行者123 更新时间:2023-12-01 11:24:06 25 4
gpt4 key购买 nike

如果我用这种方式在面板中添加图像

static ImageIcon bg = new ImageIcon("hangman1.png");

那么我的hangman1.png应该在哪里才能正确显示?

最佳答案

加载“hangman1.png”文件作为资源并将其添加到 JLabel:

JLabel label = new JLabel(new ImageIcon(getClass().getResource("/path/to/your/image/hangman1.png")));

在此之前,将其添加到 Java 项目的某个包中。

关于java - 在JFrame中添加图像: Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30962881/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com