就用你这个管理器就行了import java.awt.*;
import java.awt.event.*;
import javax.swing.*;public class IsIs extends JPanel {
    static JFrame frmIsIs;    public IsIs() {
        JTabbedPane tabs = new JTabbedPane(SwingConstants.TOP);
        JButton btnCfg = new JButton("配置");
        JButton btnRefresh = new JButton("刷新");
        JButton btnHelp = new JButton("帮助");        JPanel jp = new JPanel();
        jp.add( btnCfg );
        jp.add( btnRefresh );
        jp.add( btnHelp );
        
        TableExample tab1 = new TableExample();
        TableExample tab2 = new TableExample();
        tabs.addTab("tab1",tab1);
        tabs.addTab("tab2",tab2);        setLayout(new BorderLayout());
        add(tabs,"Center");
        add( jp, "South" );
    }    public static void main(String args[]){
        frmIsIs = new JFrame("IsIs Configeration");
        IsIs cfgIsIs = new IsIs();
        frmIsIs.getContentPane().add("Center",cfgIsIs);
        frmIsIs.setSize(400,200);        frmIsIs.addWindowListener(new WindowAdapter(){
            public void windowClosing(WindowEvent e){
                System.exit(0);
            }
        });
        frmIsIs.setVisible(true);
    }
}//构造表格
class TableExample extends JPanel{
    String data[][] = {{"a","b","c"},{"d","e","f"}};
    String columnNames[] = {"1","2","3"};    public TableExample(){
        setLayout(new BorderLayout());
        JTable table = new JTable(data,columnNames);
        JScrollPane pane = JTable.createScrollPaneForTable(table);
        add(pane);
    }
}
加了五句
 JPanel jp = new JPanel();
        jp.add( btnCfg );
        jp.add( btnRefresh );
        jp.add( btnHelp ); add( jp, "South" );