java swing borderlayout 添加窗格困难

java swing borderlayout adding panes difficulties

所以基本上,当我使用 BorderLayout 将两个窗格添加到容器时,我有一个类似于填充的东西,我不知道如何修复它

下面的代码是我的意思的图片

        Container mainContainer = this.getContentPane(); //
        mainContainer.setLayout(new BorderLayout(8, 6));
        mainContainer.setBackground(Color.BLACK);
        this.getRootPane().setBorder(BorderFactory.createMatteBorder(4, 4, 4, 4, Color.CYAN));

        JPanel panelZTekstem = new JPanel();
        panelZTekstem.setBackground(Color.ORANGE);
        poleTekstowe.setEditable(false);
        poleTekstowe.setText("0");
        poleTekstowe.setSize(400, 100);
        poleTekstowe.setOpaque(true);
        poleTekstowe.setFont(new Font("MV Boli", Font.BOLD, 20));
        poleTekstowe.setHorizontalAlignment(JTextField.RIGHT);
        panelZTekstem.setLayout(new FlowLayout());
        panelZTekstem.add(poleTekstowe);
        mainContainer.add(panelZTekstem,BorderLayout.NORTH);

        JPanel panelZLiczbami = new JPanel();

        for (int i = 0; i <= 16; i++) {
            JButton test = new JButton();
            panelZLiczbami.add(test);
        }

        panelZLiczbami.setBackground(Color.BLUE);
        mainContainer.add(panelZLiczbami, BorderLayout.CENTER);

when I add two panes to container with BorderLayout I have a something like padding

mainContainer.setLayout(new BorderLayout(8, 6));

您认为 8/6 值的用途是什么?

您正在创建组件之间的间隙。

最好阅读API以了解参数的使用方法。