public void init()
{
f = new Frame("定时关机for kylin huang");
f.setSize(500,400);//设置窗口尺寸
f.setLocation(300,200);//设置窗口位置
f.setLayout(new FlowLayout());//设置布局为流式布局
close = new Button("关机");//新建一按钮
restart= new Button("重启");//新建一按钮
tf =new TextField(10);//新建单行文本
waitclose= new Button("多少分钟以后关机");//新建一按钮
f.add(close);//按键b添加到窗口f中
f.add(restart);//按键b添加到窗口f中
f.add(tf);
f.add(waitclose);//按键b添加到窗口f中
cancel= new Button("取消");//新建一按钮
f.add(cancel);//按键b添加到窗口f中
myEvent();//关闭事件
f.setVisible(true);//显示隐藏组件
}
private void myEvent()
{
f.addWindowListener (new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
});
//用按钮实现关闭
cancel.addActionListener (new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
Runtime r= Runtime.getRuntime();