IllegalArgumentException错误

时间:2016-04-09 05:13:00

标签: java model-view-controller illegalargumentexception

所以我试图使用MVC(模型,视图,控制器)来格式化我的代码,当试图将视图添加到实际应用程序时,我得到一个错误,说明" java.lang.IllegalArgumentException:添加一个容器的窗口     在java.awt.Container.checkNotAWindow     在java.awt.Container.addImpl     在java.awt.Container.add" 虽然我知道错误是什么我不知道我应该做什么(不使用MVC或找到某种解决方法)并且会感谢任何帮助。下面我将有两个类的代码。

以下是运行应用程序的位置:

import javax.swing.*;
import java.awt.*;
/**
 * Write a description of class FencingApplication here.
 * 
 * @author (your name) 
 * @version (a version number or a date)
 */
public class Application
{
    public static void main(String[] args){
        InputView view = new InputView();
        InputModel model = new InputModel();
        InputController ctrl = new InputController(view, model);

        JFrame window = new JFrame("");
        window.setSize(500, 600);
        window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        Container c = new Container();
        c.setLayout(new BorderLayout());
        c.add( view, BorderLayout.CENTER );
        JButton btList = new JButton( "List" );
        JButton btPools = new JButton("Pools");
        JPanel buttonPanel = new JPanel();
        buttonPanel.setLayout(new GridLayout(1, 2));
        buttonPanel.add(btList);
        buttonPanel.add(btPools);
        c.add( buttonPanel, BorderLayout.NORTH );
        btList.addActionListener( ctrl );//where is the action performed method defined
        btPools.addActionListener( ctrl );
        window.setVisible( true );
    }
}

这是视图类:

import javax.swing.*; //Jframe/JButton/JLabel/etc
import java.awt.*; //container
import java.util.*;
/**
 * Write a description of class InputView here.
 * 
 * @author (your name) 
 * @version (a version number or a date)
 */
public class InputView extends JFrame implements Observer
{
    JLabel lbPaste = new JLabel("Please paste the seeding here.");
    JTextArea taPaste = new JTextArea();
    JButton btPools = new JButton("Pools");

    JLabel lbNum = new JLabel("Please input the number of pools you want to have.");
    JTextField tfNum = new JTextField();
    public InputView()
    {   
        JPanel numPanel = new JPanel();
        numPanel.setLayout(new BorderLayout());
        numPanel.add(lbNum, BorderLayout.NORTH);
        numPanel.add(tfNum, BorderLayout.CENTER);

        JPanel pastePanel = new JPanel();
        pastePanel.setLayout(new BorderLayout());
        pastePanel.add(lbPaste, BorderLayout.NORTH);
        pastePanel.add(new JScrollPane(taPaste), BorderLayout.CENTER);



        Container c = getContentPane();
        c.setLayout(new GridLayout(2, 1));
        c.add(numPanel);
        c.add(pastePanel);

        setTitle( "Pools" );
        setSize( 350, 500 );//width then height
        setVisible(true);
        setResizable(false);
        setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    }
    public void update( Observable obs, Object obj )
    {
    }
}

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

Container是例如的超类PanelJPanelWindowJFrame等。

JFrame是一个窗口,所以你不应该(事实上不能像你在这里发现的那样)将它添加到另一个组件中。 JFrametop-level container

实际上,您可能根本不应该直接使用new Container()。例如,如果您需要面板,则应使用JPanel。由于将JFrame添加到另一个组件是一个错误,因此我很难确切地说出您的意图。我看到你在c添加内容了,但是我没有看到你用它做任何其他事情。

所以:

  • JFrame是一个窗口。
  • JFrame有一个内容窗格,它是窗口内的面板。 (默认内容窗格实际上是JPanel,即使getContentPane()将其作为Container返回。)
  • 如果您想将内容放入JFrame,请将内容添加到内容窗格中。
  • 您无需向任何内容添加JFrame,只需使用new创建并致电setVisible(true)

这些是如何正确使用JFrame的基础知识。

如果您还没有阅读,我也强烈推荐Swing tutorials。他们真的很不错。