本人使用JCreator编写下面的swing类代码,出现如下图结果。不知该怎么弄?希望得到帮助

// BorderLayoutDemo.Java

import javax.swing.*;

import java.awt.*;

public class BorderLayoutDemo extends JFrame {

public BorderLayoutDemo(){ //构造函数,初始化对象值

 //设置为边界布局,组件间横向、纵向间距均为5像素

setLayout(new BorderLayout(5,5));

 setFont(new Font("Helvetica", Font.PLAIN, 14));

 getContentPane().add("North", new JButton("North"));     //将按钮添加到窗口中

 getContentPane().add("South", new JButton("South"));

 getContentPane().add("East",  new JButton("East"));

 getContentPane().add("West",  new JButton("West"));

 getContentPane().add("Center",new JButton("Center"));

}

public static void main(String args[]) {

 BorderLayoutDemo f = new BorderLayoutDemo();

   f.setTitle("边界布局");

   f.pack();

   f.setVisible(true);

        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        f.setLocationRelativeTo(null);             //让窗体居中显示

}

}

![图片说明](https://img-ask.csdn.net/upload/201704/12/1491957486_244128.png)

本来应该是像下面的结果的
![图片说明](https://img-ask.csdn.net/upload/201704/12/1491957528_282161.png)

代码上机测试没有问题,能出来期望结果。

看图中是执行的 GE2001.exe

确定这是你要运行的程序吗?