繁体   English   中英

如何使用JTextField值控制Timer动画?

[英]How can I control Timer animation with a JTextField value?

我希望能够控制使用JTextField在屏幕上移动图像的计时器的速度或延迟。 我在CarAnimationPanel第61行获得了NullPointerException ,这是timer.start()行。

这是我的代码...

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
import java.net.*;

public class Exercise18_17 extends JApplet {
    private static JTextField jtfCar1;
    private int num1;

    public Exercise18_17(){

        URL imageURL = this.getClass().getResource("images/TN_buick 1912small.GIF");
        Image image = new ImageIcon(imageURL).getImage();

        setLayout(new GridLayout(5,4,2,2));
        add(new CarAnimationPanel(image));

    }//endo of 15_15 constructor

public static class CarAnimationPanel extends JPanel implements ActionListener {
    private Image image;
    private int delay ;
    private int num1 = 0;
    private Timer timer;

    int x = 0;
    int y = 20;

    public CarAnimationPanel(Image image) {
        add(jtfCar1 = new JTextField(5));

        jtfCar1.addActionListener(new ActionListener(){
            public void actionPerformed(ActionEvent e){
                num1 = Integer.parseInt(jtfCar1.getText().trim());
                if (e.getSource() == jtfCar1){
                    delay = num1;
                    timer  = new Timer(delay, this);
                }
            }
        });
        timer.start();
        this.image = image;
    }

    public void paintComponent(Graphics g){
        super.paintComponent(g);

        if (x > getWidth()) {
            x -= 20;
        }
        x += 5;
        g.drawImage(image, x, y, this);
    }

    public void actionPerformed(ActionEvent e) {
        repaint();
    }
}

public static void main(String[] args) {
    // Create a frame
    JFrame frame = new JFrame("Exercise18_17");

    // Create an instance of the applet
    JApplet applet = new Exercise18_17();

    // Add the applet to the frame
    frame.add(applet, BorderLayout.CENTER);

    // Invoke applet's init method
    applet.init();

    // Display the frame
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(300, 200);
    frame.setLocationRelativeTo(null); // Center the frame
    frame.setVisible(true);
    }
}

各种修复程序,请参见代码以获取详细信息。 我还将JTextField换成JSpinner

练习18_17

package test.t100.t003;

import javax.swing.*;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;

import java.awt.*;
import java.awt.event.*;
import java.net.*;

public class Exercise18_17 extends JApplet {
    private static final long serialVersionUID = 1L;
    private static JSpinner jtfCar1;

    public Exercise18_17() throws MalformedURLException {

        URL imageURL = new URL(
                "http://pscode.org/media/starzoom-thumb.gif");
        Image image = new ImageIcon(imageURL).getImage();

        setLayout(new GridLayout(1, 0, 2, 2));
        add(new CarAnimationPanel(image));
    }// endo of 15_15 constructor

    public static class CarAnimationPanel extends JPanel implements
            ActionListener {
        private static final long serialVersionUID = 1L;
        private Image image;
        private int delay;
        private int num1 = 0;
        private Timer timer;

        int x = 0;
        int y = 20;

        public CarAnimationPanel(Image image) {

            add(jtfCar1 = new JSpinner(new SpinnerNumberModel(
                    150, 40, 200, 1)));

            jtfCar1.addChangeListener(new ChangeListener() {

                @Override
                public void stateChanged(ChangeEvent arg0) {
                    num1 = ((Integer)jtfCar1.getValue()).intValue();
                    delay = num1;
                    timer = new Timer(delay, CarAnimationPanel.this);
                    timer.start();
                }
            });
            this.image = image;
        }

        public void paintComponent(Graphics g) {
            super.paintComponent(g);
            if (x > getWidth()) {
                x -= getWidth();
            }
            x += 5;
            g.drawImage(image, x, y, this);
        }

        public void actionPerformed(ActionEvent e) {
            repaint();
        }
    }

    public static void main(String[] args) throws MalformedURLException {
        // Create a frame
        JFrame frame = new JFrame("Exercise18_17");

        // Create an instance of the applet
        JApplet applet = new Exercise18_17();

        // Add the applet to the frame
        frame.add(applet, BorderLayout.CENTER);

        // Invoke applet's init method
        applet.init();

        // Display the frame
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(300, 200);
        frame.setLocationRelativeTo(null); // Center the frame
        frame.setVisible(true);
    }
}

例外可能是timer未正确创建,并且为null 如果您查看代码,则直到运行ActionListener才会真正创建timer 您将需要将timer.start()移到ActionListener ,以便仅在创建timer后才运行start()

这样的事情(请注意ADDEDREMOVED注释以查看我所做的更改)...

jtfCar1.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent e){
        num1 = Integer.parseInt(jtfCar1.getText().trim());
        if (e.getSource() == jtfCar1){
            delay = num1;
            timer  = new Timer(delay, this);
            timer.start(); // ADDED
        }
    }
});
//timer.start(); //REMOVED
this.image = image;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM