import javax.swing.*;
import java.awt.*;public class panelcenter extends JFrame { /**
* @param args
*/
JPanel jp = new JPanel();
public panelcenter(){
this.setLayout(new BorderLayout());
JLabel j1 = new JLabel();
j1.setText("第一个swing程序");
jp.add(j1,BorderLayout.CENTER);
this.add(jp);
this.setSize(500, 300);
this.setLocationRelativeTo(null);
this.setVisible(true); }
public static void main(String[] args) {
// TODO Auto-generated method stub
new panelcenter();
}}