Очистите компоненты JFrame и добавьте новые компоненты - PullRequest
2 голосов
/ 06 ноября 2011

У меня есть JFrame, в котором есть несколько вариантов. Когда нажата кнопка ОК, я хочу, чтобы тот же JFrame очистил содержимое и добавил новое содержимое. Я пробовал это, но проблема новая JFrame выскочил. Что я делаю не так?

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.IOException;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.*;

public class GuiFrame extends JFrame {

    final JFrame f = new JFrame("Test");

    public void Starter(){
        ImageIcon img = new ImageIcon("C:\\Users\\neal\\Desktop\\no.png");
        f.setIconImage(img.getImage());
        ButtonGroup group = new ButtonGroup();
        final JRadioButton Acess = new JRadioButton("Acess");
        final JRadioButton Chat = new JRadioButton("Chat");
        group.add(Acess);
        group.add(Chat);
        f.setSize(400,100);
        f.setLocationRelativeTo(null);
        JButton OptionOk = new JButton("OK");

Label option = new Label("Choose a Option");

        final Container content = f.getContentPane();
        content.setBackground(Color.white);
        content.setLayout(new FlowLayout());

        content.add(option);
        content.add(Acess);
        content.add(Chat);
        content.add(OptionOk);
          f.setVisible(true);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

              OptionOk.addActionListener(new ActionListener() {

            public void actionPerformed(ActionEvent e) {


                try {
                    new GuiFrame().Initiate();
                } catch (UnknownHostException ex) {
                    Logger.getLogger(GuiFrame.class.getName()).log(Level.SEVERE, null, ex);
                }
            }
              });
    }

    public void Initiate() throws UnknownHostException {

        f.removeAll();
        ButtonGroup group = new ButtonGroup();

        final JRadioButton ButtonServer = new JRadioButton("Server");
        final JRadioButton ButtonClient = new JRadioButton("Client");
        group.add(ButtonServer);
        group.add(ButtonClient);

        f.setSize(400, 100);
        f.setLocationRelativeTo(null);
        InetAddress thisIp = InetAddress.getLocalHost();

        ImageIcon img = new ImageIcon("C:\\Users\\neal\\Desktop\\no.png");
        f.setIconImage(img.getImage());
        Label lip = new Label("Your IP is : " + thisIp.getHostAddress());
        Label setup = new Label("Setup as ");
        JButton ButtonOk = new JButton("OK");

        final Container content = f.getContentPane();
        content.setBackground(Color.white);
        content.setLayout(new FlowLayout());
        content.add(lip);
        content.add(setup);
        content.add(ButtonServer);
        content.add(ButtonClient);
        content.add(ButtonOk);
        f.setVisible(true);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

    public static void main(String[] args) throws UnknownHostException {

        GuiFrame gf = new GuiFrame();
        gf.Starter();
    }
}

Ответы [ 2 ]

5 голосов
/ 06 ноября 2011

Решение простое: используйте CardLayout, и пусть этот менеджер раскладок сделает всю тяжелую работу за вас. Для получения более подробной информации о том, как это сделать, см. Учебник: Как использовать CardLayout

Что касается вашего кода, обратите внимание, что вы фактически создаете 2 JFrames при его запуске и еще два при нажатии JButton:

Сам класс GuiFrame расширяет JFrame, но, похоже, это JFrame, который вы никогда не используете и, таким образом, теряется, но, тем не менее, он создается при запуске программы и всякий раз, когда создается экземпляр GuiFrame, например при нажатии кнопки. Затем внутри этого класса вы создаете еще один JFrame f, один при запуске программы и еще раз при нажатии кнопки, и я не думаю, что это то, что вы хотите сделать.

Так что измените ваш код так, чтобы класс не расширял JFrame, и не создавайте новый экземпляр класса в ActionListener ваших кнопок. Вместо этого используйте CardLayout, чтобы поменять местами представления.

Например:

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;

public class GuiFrame {

   private static final String FIRST_PANEL = "First Panel";
   private static final String SECOND_PANEL = "Second Panel";
   final JFrame f = new JFrame("Test");
   private CardLayout cardLayout = new CardLayout();
   private JPanel content;

   public void Starter() {
      f.setSize(400, 100);
      f.setLocationRelativeTo(null);
      JButton OptionOk = new JButton("OK");

      Label option = new Label("Choose a Option");

      content = (JPanel) f.getContentPane();
      content.setLayout(cardLayout);

      JPanel firstPanel = new JPanel();
      firstPanel.setBackground(Color.white);
      firstPanel.setLayout(new FlowLayout());

      firstPanel.add(option);
      firstPanel.add(OptionOk);

      content.add(firstPanel, FIRST_PANEL);
      content.add(createSecondPanel(), SECOND_PANEL);
      f.setVisible(true);
      f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

      OptionOk.addActionListener(new ActionListener() {

         public void actionPerformed(ActionEvent e) {

            cardLayout.show(content, SECOND_PANEL);

         }
      });

   }

   private JPanel createSecondPanel() {
      JPanel secondPanel = new JPanel();
      secondPanel.add(new JButton(new AbstractAction("Go Back") {
         public void actionPerformed(ActionEvent e) {
            cardLayout.show(content, FIRST_PANEL);
         }
      }));
      return secondPanel;
   }


   public static void main(String[] args) {

      GuiFrame gf = new GuiFrame();
      gf.Starter();
   }

}
0 голосов
/ 06 ноября 2011

исправлена ​​(но все еще грязная) версия:

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.*;

public class GuiFrame implements ActionListener{

    final JFrame f = new JFrame("Test");

    public void start(){
        ImageIcon img = new ImageIcon("C:\\Users\\neal\\Desktop\\no.png");
        f.setIconImage(img.getImage());
        ButtonGroup group = new ButtonGroup();
        final JRadioButton Acess = new JRadioButton("Acess");
        final JRadioButton Chat = new JRadioButton("Chat");
        group.add(Acess);
        group.add(Chat);
        f.setSize(400,100);
        f.setLocationRelativeTo(null);
        JButton OptionOk = new JButton("OK");

        Label option = new Label("Choose a Option");

        final Container content = f.getContentPane();
        content.setBackground(Color.white);
        content.setLayout(new FlowLayout());

        content.add(option);
        content.add(Acess);
        content.add(Chat);
        content.add(OptionOk);
        f.setVisible(true);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        OptionOk.addActionListener(this);

    }

    public void initiate() throws UnknownHostException {

        //f.removeAll();
        ButtonGroup group = new ButtonGroup();

        final JRadioButton ButtonServer = new JRadioButton("Server");
        final JRadioButton ButtonClient = new JRadioButton("Client");
        group.add(ButtonServer);
        group.add(ButtonClient);

        f.setSize(400, 100);
        f.setLocationRelativeTo(null);
        InetAddress thisIp = InetAddress.getLocalHost();

        ImageIcon img = new ImageIcon("C:\\Users\\neal\\Desktop\\no.png");
        f.setIconImage(img.getImage());
        Label lip = new Label("Your IP is : " + thisIp.getHostAddress());
        Label setup = new Label("Setup as ");
        JButton ButtonOk = new JButton("OK");



        final Container content = f.getContentPane();
        content.removeAll();
        content.setBackground(Color.white);
        content.setLayout(new FlowLayout());
        content.add(lip);
        content.add(setup);
        content.add(ButtonServer);
        content.add(ButtonClient);
        content.add(ButtonOk);
        f.repaint();

    }

    public void actionPerformed(ActionEvent arg0) {
        try {
            initiate();
        } catch (UnknownHostException ex) {
            Logger.getLogger(GuiFrame.class.getName()).log(Level.SEVERE, null, ex);
        }       
    }

    public static void main(String[] args) throws UnknownHostException {

        GuiFrame gf = new GuiFrame();
        gf.start();
    }
}
...