Java AWT如何延迟绘制对象
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java AWT如何延迟绘制对象相关的知识,希望对你有一定的参考价值。
我想每2秒画一个新的随机形状。
我已经有一个窗口,立即显示一些形状。我试着用Timer搞定几秒钟后在窗口中出现新的东西,但它没有用,或者整个程序冻结了。使用Timer是个好主意吗?我应该如何实现它,使它工作?
import javax.swing.*;
import java.awt.*;
import java.util.Random;
class Window extends JFrame {
Random rand = new Random();
int x = rand.nextInt(1024);
int y = rand.nextInt(768);
int shape = rand.nextInt(2);
Window(){
setSize(1024,768);
setVisible(true);
setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
}
public void paint(Graphics g) {
super.paint(g);
g.setColor(new Color(0, 52, 255));
switch(shape) {
case 0:
g.fillOval(x, y, 50, 50);
break;
case 1:
g.fillRect(x,y,100,100);
break;
}
repaint();
}
}
public class Main {
public static void main(String[] args) {
Window window = new Window();
}
}
我还想绘制一些随机的形状。是否可以,为此目的使用油漆方法中的开关?我会做一个随机变量,如果它是1它会画矩形,如果它是2它会画椭圆等。
答案
首先,不要改变JFrame
被绘制的方式(换句话说,不要覆盖paintComponent()
的JFrame
)。创建一个JPanel
的扩展类,然后绘制JPanel
。其次,不要覆盖paint()
方法。覆盖paintComponent()
。第三,始终使用SwingUtilities.invokeLater()
运行Swing应用程序,因为它们应该在自己的名为EDT(事件调度线程)的线程中运行。最后,javax.swing.Timer
正是您所寻找的。
看看这个例子。它每隔1500毫米随机X,Y绘制一个椭圆形。
预习:
源代码:
import java.awt.BorderLayout;
import java.awt.Graphics;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
import javax.swing.Timer;
public class DrawShapes extends JFrame {
private ShapePanel shape;
public DrawShapes() {
super("Random shapes");
getContentPane().setLayout(new BorderLayout());
getContentPane().add(shape = new ShapePanel(), BorderLayout.CENTER);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(500, 500);
setLocationRelativeTo(null);
initTimer();
}
private void initTimer() {
Timer t = new Timer(1500, e -> {
shape.randomizeXY();
shape.repaint();
});
t.start();
}
public static class ShapePanel extends JPanel {
private int x, y;
public ShapePanel() {
randomizeXY();
}
@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
g.fillOval(x, y, 10, 10);
}
public void randomizeXY() {
x = (int) (Math.random() * 500);
y = (int) (Math.random() * 500);
}
}
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> new DrawShapes().setVisible(true));
}
}
另一答案
首先,不要继承JFrame;相反,子类是JPanel,并将该面板放在JFrame中。其次,不要覆盖paint() - 改为覆盖paintComponent()。三,创建一个Swing Timer,并在其actionPerformed()方法中进行所需的更改,然后调用yourPanel.repaint()
以上是关于Java AWT如何延迟绘制对象的主要内容,如果未能解决你的问题,请参考以下文章