无法将图像提供给按钮

发布于 2024-11-17 19:21:27 字数 278 浏览 2 评论 0原文

我是 Swing 新手。我需要给 Jbutton 一个图标。我在很多地方找到了示例代码,并尝试了这样的操作

ImageIcon cup = new ImageIcon("/home/Whether/Picture/start.png");
JButton startBut=new JButton(cup);
panel.add(startBut);

,但是按钮显示没有 Icon.Image 路径是正确的。

如果我错了,请纠正我?

提前谢谢

I am new to Swing. I need to give a Jbutton an icon. I found example code so many places and tried like this

ImageIcon cup = new ImageIcon("/home/Whether/Picture/start.png");
JButton startBut=new JButton(cup);
panel.add(startBut);

But button is showing without Icon.Image path is correct.

Pls coorect me if Im wrong?

Thnx in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七堇年 2024-11-24 19:21:27

添加图像的最佳方法是将图像链接到“anchor”java类

创建“Anchor”类作为源绑定并将其放入包含“image.png”等的项目包中...这样您就可以读取图像直接从 Jar 文件中作为

Image image=ImageIO.read(Anchor.class.getClassLoader().getResourseAsStream("image.png"));
ImageIcon icon=new ImageIcon(image);

Rest things with JButton 我想你知道:)

祝你好运

The best way of adding images is to link image to an "anchor" java class

Create "Anchor" class as a source bound and place it into your project package which contains an "image.png" etc... So you can read image right from the Jar file as

Image image=ImageIO.read(Anchor.class.getClassLoader().getResourseAsStream("image.png"));
ImageIcon icon=new ImageIcon(image);

Rest things with JButton I guess you know :)

Good luck

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文