当前位置: 代码迷 >> J2SE >> Swing Graphics 绘制图片有关问题
  详细解决方案

Swing Graphics 绘制图片有关问题

热度:583   发布时间:2016-04-23 21:48:37.0
Swing Graphics 绘制图片问题
我想用java Swing做一个简单版的雷电小游戏,自己P了一张gif图片,但是为什么不能够在JPanel中显示出来呢?
public class Plane {
int x;                //飞机的位置
int y;
String path;
Image planeImage;


public Plane(int x, int y) {
this.x = x;
this.y = y;
path = URLDecoder.decode(getClass().getResource("../images/test.gif").getPath());
ImageIcon icon = new ImageIcon(path);
planeImage = icon.getImage();
}

public void draw(Graphics g) {
g.drawImage(planeImage, x, y, null);
}
}

这是为什么啊,难到时不支持gif格式吗
java Swing gif

------解决方案--------------------
BufferedImage planeImage = ImageIO.read(getClass().getResource("../images/test.gif"));