2

アプレット内にアニメーション化された.gifを表示するためのコードは何ですか?

4

1 に答える 1

1

an を使用して aに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);
    }

}
于 2011-08-25T11:23:50.980 に答える