如何将按钮添加到边框布局右下角的 java 应用程序按钮?

How to Add a button to java application button right bottom of the borderlayout?

嘿,所以我想在我的 Java 应用程序边框布局的底部添加一个名为注销的按钮。还要让我在应用程序中心的其他 2 个按钮?任何帮助都会很棒。

    JPanel p = new JPanel();
    JPanel p2 = new JPanel();

    JButton b = new JButton("Edit/Add Data");
    JButton c = new JButton("Web Records Viewer");

    p.add(b);
    p.add(c);

    JButton d = new JButton("Logout");

    p2.add(d);

    add(p, Borderlayout.SOUTH int );
    add(p2, BorderLayout.EAST);

添加另一个 Panel 和另一个 BorderLayout。像,

JFrame f = new JFrame();
f.setLayout(new BorderLayout());
JPanel p = new JPanel();
JPanel p2 = new JPanel();
JPanel p3 = new JPanel(new BorderLayout());
JButton b = new JButton("Edit/Add Data");
JButton c = new JButton("Web Records Viewer");

p.add(b);
p.add(c);
f.add(p, BorderLayout.CENTER);

JButton d = new JButton("Logout");

p2.add(d);
p3.add(p2, BorderLayout.EAST);
f.add(p3, BorderLayout.SOUTH);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.pack();
f.setVisible(true);