在 JPanel 上显示 jpg 图像

发布于 2024-08-09 09:27:28 字数 391 浏览 1 评论 0原文

如何在 JPanel 中显示存储在 arraylist 中的 jpg 图像? 我无法在 JPanel 中显示 jpg 文件。

String[] pictureFile   = {"A.jpg","B.jpg","C.jpg"};
List<String>  picList1 = Arrays.asList(pictureFile);

Collections.shuffle(picList1); 

ImageIcon icon = new ImageIcon("picList1.get(0)");
JLabel label1   = new JLabel();
label1.setIcon(icon);

JPanel panel = newJPanel;
panel.add(label); 

How can I display jpg image which I stored in arraylist in JPanel?
Im not able to display the jpg files in the JPanel.

String[] pictureFile   = {"A.jpg","B.jpg","C.jpg"};
List<String>  picList1 = Arrays.asList(pictureFile);

Collections.shuffle(picList1); 

ImageIcon icon = new ImageIcon("picList1.get(0)");
JLabel label1   = new JLabel();
label1.setIcon(icon);

JPanel panel = newJPanel;
panel.add(label); 

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

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

发布评论

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

评论(2

过潦 2024-08-16 09:27:28

您不应将对数组的调用放在引号中。

相反,您应该尝试以下操作:

ImageIcon icon = new ImageIcon(picList1.get(0));

You should not put the call to the array in quotes.

Instead, you should try the following:

ImageIcon icon = new ImageIcon(picList1.get(0));
转角预定愛 2024-08-16 09:27:28

问题出在

ImageIcon icon = new ImageIcon("picList1.get(0)");

It'sterpreting the string as a file name 行中。您只需取消引用 picList1.get(0) 位即可。

The problem is in the line

ImageIcon icon = new ImageIcon("picList1.get(0)");

It's interpreting the string as a file name. You should just need to unquote the picList1.get(0) bit.

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