按钮问题
这程序怎么编译不了?import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class JButtontext
{
public static void main(String[] args)
{
JFrame f = new JFrame("这是一个按钮");//窗口显示的文本
Container contentPane=f.getContentPane();
JButton b=new JButton("按钮");//按钮显示的文字
b.setHorizontalTextPosition(JButton.CENTER);
b.setVerticalTextPosition(JButton.BOTTOM);
contentPane.add(b);
f.pack();
f.show();
f.addWindowListener(new WindoxAdapter() //添加事件监听
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
});
}
}