这段程序为什么无法运行?
import java.awt.*;import java.applet.*;
public class JuneGrid extends Applet
{
public void init()
{
setLayout(new BorderLayout());
Panel header=new Panel();
header.add(new Label("2000年六月"));
add("North",header);
Panel body=new Panel();
body.setLayout(new GridLayout(6,7));
String days=new String("星期天星期一星期二星期三星期四星期五星期六");
for(int i=0;i<14;i+=2)
{
body.add(new Label(days.substring(i,i+3)));
}
for(int i=0;i<4;i++)
{
body.add(new Label());
}
for(int i=1;i<=30;i++)
{
body.add(new Button(new Integer(i).toString()));
}
add("center",body);
}
}