JLabel Allnum = new JLabel(); for(int i = 0;i<1000;i++){ Allnum.setText(String.valueOf(i)); Allnum.repaint(); //这个一定要写,不写没效果(重绘此组件) }