如何防止时钟闪烁?

时间:2019-10-03 10:47:00

标签: java swing awt

我目前正在使用AWT Package和Swing在Java中制作一个模拟时钟。但是,数字时钟叠加层目前每隔一段时间会闪烁一次,我想解决此问题。

我已经读过关于结合repaint()实现双重缓冲的信息,但是我仍然坚持如何实现它。


import java.applet.Applet;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Graphics;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.GregorianCalendar;
import java.util.TimeZone;
import java.util.Timer;
import java.util.TimerTask;
import javax.swing.JFrame;

public class Clock2d extends Applet {

    GregorianCalendar cal;
    Timer clockTimer = new Timer();
    TimeZone clockTimeZone = TimeZone.getDefault();

    public Clock2d() {
        clockTimer.schedule(new TickTimerTask(), 0, 1000);
    }

    @Override
    public void init() {
    }

    public void paint(Graphics g) {
        g.setColor(Color.BLUE);
        g.fillOval(40, 40, 220, 220);
        g.setColor(Color.WHITE);
        g.fillOval(50, 50, 200, 200);

        double second = cal.get(Calendar.SECOND);
        double minute = cal.get(Calendar.MINUTE);
        double hours = cal.get(Calendar.HOUR);

        for (int i = 0; i < 60; i++) {
            int length = 90;
            double rad = (i * 6) * (Math.PI) / 180;
            if (i % 5 == 0) {
                length = 82;
                g.setColor(Color.BLUE);
            } else {
                g.setColor(Color.GRAY);
            }
            int x = 150 + (int) (95 * Math.cos(rad - (Math.PI / 2)));
            int y = 150 + (int) (95 * Math.sin(rad - (Math.PI / 2)));
            int x1 = 150 + (int) (length * Math.cos(rad - (Math.PI / 2)));
            int y1 = 150 + (int) (length * Math.sin(rad - (Math.PI / 2)));
            g.drawLine(x, y, x1, y1);
        }

        drawHands(g, second, minute, hours);

        SimpleDateFormat sdf = new SimpleDateFormat("hh:mm:ss");
        g.setColor(Color.BLUE);
        g.setFont(new Font("Tahoma", Font.BOLD, 16));
        g.drawString(sdf.format(cal.getTime()), 120, 20);
        g.setFont(new Font("Arial", Font.BOLD, 10));

    }

    public void drawHands(Graphics g, double second, double minute, double hours) {
        double rSecond = (second * 6) * (Math.PI) / 180;
        double rMinute = ((minute + (second / 60)) * 6) * (Math.PI) / 180;
        double rHours = ((hours + (minute / 60)) * 30) * (Math.PI) / 180;
        g.setColor(Color.RED);
        g.drawLine(150, 150, 150 + (int) (100 * Math.cos(rSecond - (Math.PI / 2))), 150 + (int) (100 * Math.sin(rSecond - (Math.PI / 2))));
        g.setColor(Color.BLACK);
        g.drawLine(150, 150, 150 + (int) (70 * Math.cos(rMinute - (Math.PI / 2))), 150 + (int) (70 * Math.sin((rMinute - (Math.PI / 2)))));
        g.drawLine(150, 150, 150 + (int) (50 * Math.cos(rHours - (Math.PI / 2))), 150 + (int) (50 * Math.sin(rHours - (Math.PI / 2))));
    }

    class TickTimerTask extends TimerTask {

        @Override
        public void run() {

            cal = (GregorianCalendar) GregorianCalendar.getInstance(clockTimeZone);
            repaint();
        }
    }

    public static void main(String[] args) {
        JFrame frame = new JFrame("Clock 2D");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setPreferredSize(new Dimension(330, 330));
        Clock2d clock2d = new Clock2d();
        clock2d.setPreferredSize(new Dimension(320, 320));
        clock2d.init();
        frame.setLayout(new BorderLayout());
        frame.getContentPane().add(clock2d, BorderLayout.CENTER);
        frame.pack();
        frame.setVisible(true);
    }
}

除了偶尔闪烁数字数字时钟外,该代码的工作与预期的完全一样。

1 个答案:

答案 0 :(得分:3)

  1. public class Clock2d extends Applet java.awt.Applet不仅已弃用,而且默认情况下也不会进行双缓冲。更改它以扩展JPanel(是)。
  2. 然后将public void paint(Graphics g) {更改为public void paintComponent(Graphics g) { super.paintComponent(g);以遵守油漆链。
  3. class TickTimerTask extends TimerTask改用javax.swing.Timer。它运行在事件调度线程上,对GUI的任何调用都应在EDT上进行。

以下是代码中表示的这三点。您是否在此版本中看到“闪烁”的工件?

import java.awt.*;
import java.awt.event.*;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.GregorianCalendar;
import java.util.TimeZone;
import javax.swing.*;

public class Clock2d extends JPanel {

    TimeZone clockTimeZone = TimeZone.getDefault();
    GregorianCalendar cal = 
            (GregorianCalendar) GregorianCalendar.getInstance(clockTimeZone);
    ActionListener repaintListener = (ActionEvent e) -> {
        cal = (GregorianCalendar) GregorianCalendar.getInstance(clockTimeZone);
        repaint();
    };
    Timer clockTimer = new Timer(100, repaintListener);

    public Clock2d() {
        clockTimer.start();
    }

    @Override
    public void paintComponent(Graphics g) {
        super.paintComponent(g);
        g.setColor(Color.BLUE);
        g.fillOval(40, 40, 220, 220);
        g.setColor(Color.WHITE);
        g.fillOval(50, 50, 200, 200);

        double second = cal.get(Calendar.SECOND);
        double minute = cal.get(Calendar.MINUTE);
        double hours = cal.get(Calendar.HOUR);

        for (int i = 0; i < 60; i++) {
            int length = 90;
            double rad = (i * 6) * (Math.PI) / 180;
            if (i % 5 == 0) {
                length = 82;
                g.setColor(Color.BLUE);
            } else {
                g.setColor(Color.GRAY);
            }
            int x = 150 + (int) (95 * Math.cos(rad - (Math.PI / 2)));
            int y = 150 + (int) (95 * Math.sin(rad - (Math.PI / 2)));
            int x1 = 150 + (int) (length * Math.cos(rad - (Math.PI / 2)));
            int y1 = 150 + (int) (length * Math.sin(rad - (Math.PI / 2)));
            g.drawLine(x, y, x1, y1);
        }

        drawHands(g, second, minute, hours);

        SimpleDateFormat sdf = new SimpleDateFormat("hh:mm:ss");
        g.setColor(Color.BLUE);
        g.setFont(new Font("Tahoma", Font.BOLD, 16));
        g.drawString(sdf.format(cal.getTime()), 120, 20);
        g.setFont(new Font("Arial", Font.BOLD, 10));

    }

    public void drawHands(Graphics g, double second, double minute, double hours) {
        double rSecond = (second * 6) * (Math.PI) / 180;
        double rMinute = ((minute + (second / 60)) * 6) * (Math.PI) / 180;
        double rHours = ((hours + (minute / 60)) * 30) * (Math.PI) / 180;
        g.setColor(Color.RED);
        g.drawLine(150, 150, 150 + (int) (100 * Math.cos(rSecond - (Math.PI / 2))), 150 + (int) (100 * Math.sin(rSecond - (Math.PI / 2))));
        g.setColor(Color.BLACK);
        g.drawLine(150, 150, 150 + (int) (70 * Math.cos(rMinute - (Math.PI / 2))), 150 + (int) (70 * Math.sin((rMinute - (Math.PI / 2)))));
        g.drawLine(150, 150, 150 + (int) (50 * Math.cos(rHours - (Math.PI / 2))), 150 + (int) (50 * Math.sin(rHours - (Math.PI / 2))));
    }

    public static void main(String[] args) {
        // Swing / AWT GUIs should be created & changed on the EDT ..
        Runnable r = () -> {
            JFrame frame = new JFrame("Clock 2D");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setPreferredSize(new Dimension(330, 330));
            Clock2d clock2d = new Clock2d();
            clock2d.setPreferredSize(new Dimension(320, 320));
            frame.setLayout(new BorderLayout());
            frame.getContentPane().add(clock2d, BorderLayout.CENTER);
            frame.pack();
            frame.setVisible(true);
        };
        // .. this is how we ensure that Runnable is on the EDT.
        SwingUtilities.invokeLater(r);
    }
}

其他提示字体:

g.setFont(new Font("Arial", Font.BOLD, 10));

鉴于重复调用paint方法,最好在构造类时建立字体(两种字体)并将它们存储为类的属性(可以在方法中引用)。

但是最好使用逻辑字体代替“ Arial”之类的字体,

g.setFont(new Font(Font.SANS_SERIF, Font.BOLD, 10));

这不仅提供了编译时间检查,而且还可以跨OS平台进行调整。例如,SANS_SERIF字体将在Windows和大多数* nix框上显示Arial,但在OS X上默认的SANS_SERIF(未修饰)字体为Helvetica。

另一种字体Tahoma更成问题。同样,它可能会出现在许多Windows机器上,但是最好进行测试并提供备份列表,或者在Clock应用程序中提供字体。 (假设您具有发行权)。

相关问题