程序修改一下:
public  class  DrawBarPanel  extends  JPanel  
{  
     public  DrawBarPanel()  
     {  
           Timer  t  =  new  Timer(1000,new  ActionListener()  
           {  
               public  void  actionPerformed(ActionEvent  event)  
               {  
                 //do  some  thing  
                 repaint();  
               });  
           t.start();  
           }  
     }    
   public  void  paintComponent(Graphics  g)  
   {  
             //画图  
     }  
}