gpt4 book ai didi

java - JLabel 不显示 .gif 动画

转载 作者:行者123 更新时间:2023-12-02 15:17:41 25 4
gpt4 key购买 nike

我正在尝试将“.gif”图像放在标签上。图像加载,但它是静态的(无动画)。你猜为什么?以及如何解决?

我正在使用的代码:

BufferedImage img1=ImageIO.read(TCPServer.class.getResource("filecopy.gif"));
JLabel filetransferpic = new JLabel(new ImageIcon(img1));

注意:我不想使用..

JLabel filetransferpic = new JLabel(new ImageIcon("G:\\filecopy.gif")); 

..方法。因为在这种方法中,我必须提供驱动器路径并将图像放置在驱动器中。我想要项目文件夹“src”中的图像。

最佳答案

在您的示例中,您使用的是 BufferedImage。相反,使用 ImageIcon,如下所示:

ImageIcon gifImage = new ImageIcon(new URL("file:/Path/To/file.gif"));
JLabel yourLabel = new JLabel(gifImage);

这应该是动画的。但请记住,构造函数 URL(String) 会抛出 MalformedURLException;确保捕获它。

关于java - JLabel 不显示 .gif 动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12555459/

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