无法将图像提供给按钮
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加图像的最佳方法是将图像链接到“anchor”java类
创建“Anchor”类作为源绑定并将其放入包含“image.png”等的项目包中...这样您就可以读取图像直接从 Jar 文件中作为
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
Rest things with JButton I guess you know :)
Good luck