注意在写java swing的时候 首先要做的就是一下代码:以后要养成习惯哦:
this.setTitle("邮件发送");
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setLocation(200, 400);
this.setSize(400, 600);
getContentPane().setLayout(new BorderLayout());
getHeadPanel();
getCenterPanel();
setVisible(true);
中间的部分是你自己的组件代码,开始的和结束的都是Jframe组件的东西,特别是 setVisible(true);一定要写在最后面加载,这样才能将自己写的东西加载出来。