我可能正在做一些非常愚蠢的事情而且看不到它,但我一直试图设置一个矩形的大小调整动画来用于条形图。代码符合但我的框架中没有显示任何内容。它完全是空白。
package server2;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Rectangle;
import javax.swing.JPanel;
@SuppressWarnings("serial")
public class Bar extends JPanel implements Runnable {
int height = 0;
Color barColor;
Rectangle bar;
Thread bartender;
public Bar(int x, int y, Color barColor) {
this.barColor=barColor;
this.bar = new Rectangle(x, y, 15, this.height);
this.bartender= new Thread(this);
}
public void update() {
bar.setSize(this.bar.width, this.bar.height++);
}
public void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2d = (Graphics2D) g.create();
g2d.setColor(this.barColor);
g2d.fill(this.bar);
}
public void callBarTender() {
this.bartender.notify();
}
@Override
public void run() {
for(int i = this.bar.height; i<this.height; i++ ) {
try {
update();
repaint();
Thread.sleep(30);
} catch(Exception e) {
System.out.println(e);
}
}
try {
this.bartender.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setSize(400, 400);
frame.setResizable(false);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
Bar bar1 = new Bar(200,200, Color.blue);
bar1.setVisible(true);
frame.add(bar1);
bar1.height = 10;
bar1.bartender.start();
}
答案 0 :(得分:1)
更改...
bar.setSize(this.bar.width, this.bar.height++);
到
bar.setSize(this.bar.width, this.bar.height + 1);
或
bar.setSize(this.bar.width, ++this.bar.height);
this.bar.height++
的分配是一个被忽略的职位分配
您还应该切换这两行的顺序......
bar1.setVisible(true);
frame.add(bar1);
所以在您准备好UI之后调用setVisible
。
您还应该考虑使用Swing Timer
更安全地更新UI或UI可能依赖的任何数据进行绘制