使用布局代替组件

Use a layout in place of a component

我想创建一个 window 主框架,其中 BorderLayout 包含其他布局作为其组件。

我怎样才能将 FlowLayout 添加到我的 BorderLayoutNORTH 位置?

这是一个向您展示的小程序:

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.FlowLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.border.LineBorder;
    public class LayoutExample {
        public static void main (String[] args) {
            JFrame frame = new JFrame("Frame with BorderLayout");
            frame.setLayout(new BorderLayout());
            JPanel flow = new JPanel();
            JLabel label = new JLabel("This is a flowlayout.");
            flow.setBorder(new LineBorder(Color.BLACK));
            flow.setLayout(new FlowLayout());
            flow.add(label);

            frame.add(flow, BorderLayout.NORTH);
            frame.setSize(300,300);
            frame.setVisible(true);
       } 
    }

最后是这样的: