请看这个Java程序及图片存放途径都在这里,看看有没有错,类是中间那个,图片是最后一张

importjava.awt.*;importjavax.swing.*;publicclassddextendsJFrameimplementsRunnable{pri... import java.awt.*;
import javax.swing.*;
public class dd extends JFrame implements Runnable{
private JLabel car;
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable(){
public void run() {
try{
dd frame=new dd();
frame.setVisible(true);
new Thread(frame).start();
}
catch(Exception e){
e.printStackTrace();
}}});}
public dd(){
super();
setResizable(false);
this.setLayout(null);
this.setBounds(100,100,300,78);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
ImageIcon icon=new ImageIcon(getClass().getResource("zixingche.png"));
car.setIcon(icon);
car.setBounds(0,0,icon.getIconWidth(),icon.getIconHeight());
this.add(car);
}
public void run() {
int width=getWidth();
while(true){
for(int i=0;i<width;i+=3){
try{
Thread.sleep(30);
}
catch(InterruptedException e){
e.printStackTrace();
}
car.setLocation(i, car.getLocation().y);
}
}

}

}
展开
 我来答
alexmao4
2014-06-04 · TA获得超过1741个赞
知道大有可为答主
回答量:2350
采纳率:50%
帮助的人:454万
展开全部
虽然不规范,但是没错。
getClass().getResource("zixingche.png")是不是NullPointerException?
高亮977
2014-06-04 · 超过13用户采纳过TA的回答
知道答主
回答量:37
采纳率:0%
帮助的人:17.4万
展开全部
测试发现空指针异常,private JLabel car;没有实例化,改为private JLabel car=new JLabel();
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式