gpt4 book ai didi

java - 动画 .GIF 和 Java

转载 作者:行者123 更新时间:2023-11-30 11:59:59 24 4
gpt4 key购买 nike

在小程序中显示动画 .gif 的代码是什么?

最佳答案

只需使用 ImageIcon 并将其放入 JLabel 中,例如

public class AnimatedGIF {

public static void main(final String[] args) throws MalformedURLException {
final URL location = new URL("http://upload.wikimedia.org/wikipedia/commons/archive/f/f0/20060824220301!Zipper_animated.gif");

final JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new JLabel(new ImageIcon(location)));
frame.pack();
frame.setVisible(true);
}

}

关于java - 动画 .GIF 和 Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2282182/

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