Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
309 views
in Technique[技术] by (71.8m points)

java - I want to use animated GIF images the application using JFC/Swing tookkit. I am confused about this toolkit

I just load an animated GIF images as an ImageIcon. The image of my Swing program running on Window 2000 PC Note that I am using Java/JDK 1.4.x release.

Here is code, but it is not working:

/**
  * DevDaily.com
* A sample program showing how to use an animated gif image
  * in a Java Swing application.
  */
package giftest;
import java.awt.*;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JLabel;
import javax.swing.ImageIcon;
public class MainFrame extends JFrame {
    JPanel contentPane;
    JLabel imageLabel = new JLabel();
    JLabel headerLabel = new JLabel();

    public MainFrame() {
        try {
setDefaultCloseOperation(EXIT_ON_CLOSE);
            contentPane = (JPanel) getContentPane();
            contentPane.setLayout(new BorderLayout());
            setSize(new Dimension(400, 300));
            setTitle("Your Job Crashed!");
            // add the header label
            headerLabel.setFont(new java.awt.Font("Comic Sans MS", Font.BOLD, 16));
            headerLabel.setText("   Your job crashed during the save process!");
            contentPane.add(headerLabel, java.awt.BorderLayout.NORTH);
            // add the image label
            ImageIcon ii = new ImageIcon(this.getClass().getResource(
                    "snoopy_dancing.gif"));            imageLabel.setIcon(ii);
            contentPane.add(imageLabel, java.awt.BorderLayout.CENTER);
            // show it
            this.setLocationRelativeTo(null);

            this.setVisible(true)
        } catch (Exception exception) {
            exception.printStackTrace();
        }
}
    public static void main(String[] args) {
        new MainFrame();
    }
}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

This code (which is functionally equivalent to the code seen above) works on Windows 10 using Java 1.8.

Check it runs as you expected on your machine. If so, it would seem that snoopy_dancing.gif is not in the location that the code expects.

import java.awt.*;
import java.net.URL;
import javax.swing.*;

public class MainFrame extends JFrame {

    JPanel contentPane;
    JLabel imageLabel = new JLabel();
    JLabel headerLabel = new JLabel();

    public MainFrame() {
        try {
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            contentPane = (JPanel) getContentPane();
            contentPane.setLayout(new BorderLayout());
            setSize(new Dimension(400, 300));
            setTitle("Your Job Crashed!");
            // add the header label
            headerLabel.setFont(new Font("Comic Sans MS", Font.BOLD, 16));
            headerLabel.setText("Your job crashed during the save process!");
            contentPane.add(headerLabel, BorderLayout.NORTH);
            // add the image label
            ImageIcon ii = new ImageIcon(
                    // this.getClass().getResource("snoopy_dancing.gif")); 
                    new URL("https://i.stack.imgur.com/OtTIY.gif"));
            imageLabel.setIcon(ii);
            contentPane.add(imageLabel, BorderLayout.CENTER);
            // show it
            this.setLocationRelativeTo(null);

            this.setVisible(true);
        } catch (Exception exception) {
            exception.printStackTrace();
        }
    }

    public static void main(String[] args) {
        new MainFrame();
    }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...