gpt4 book ai didi

java - 在 JPanel 上显示 jpg 图像

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

如何在 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);

最佳答案

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

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

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

关于java - 在 JPanel 上显示 jpg 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1657760/

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