Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将图像添加到 JButtons。这是我正在使用的代码:
图像位于名为“Images”的文件夹中,该文件夹恰好位于应用程序的源包中。JButton 的大小已正确调整,但按钮中未显示任何图像。有人可以帮我解决这个问题吗?谢谢 :)
尝试create_ImageIcon(Button_NewFile, "src/Images/New File.png");
create_ImageIcon(Button_NewFile, "src/Images/New File.png");
创建 时ImageIcon,它会搜索启动应用程序的相对路径。通常这是在src文件夹所在的文件夹中。但请记住,当您将其作为独立应用程序运行时。
ImageIcon