为什么getcontentpane()未定义?

时间:2014-07-04 05:34:36

标签: java swing jtable jframe

我这里有代码,我收到此错误。如何修复下面代码的错误?

Container container = getContentPane();

这是正在运行的代码。

import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.table.DefaultTableModel;

public class ModelJTable{
  private DefaultTableModel model;

  private JTable table;

  public ModelJTable() {
    super();
    model = new DefaultTableModel();
    model.addColumn("Product Name");
    model.addColumn("Price");
    model.addColumn("Quantity");
    model.addColumn("Subtotal");

    String[] socrates = { "Socrates", "", "469-399 B.C." };
    model.addRow(socrates);
    table = new JTable(model);

    JButton addButton = new JButton("Add Philosopher");
    addButton.addActionListener(new ActionListener() {

      public void actionPerformed(ActionEvent event) {
        String[] philosopher = { "", "", "" };
        model.addRow(philosopher);
      }
    });

    JButton removeButton = new JButton("Remove Selected Philosopher");

    removeButton.addActionListener(new ActionListener() {

      public void actionPerformed(ActionEvent event) {
        model.removeRow(table.getSelectedRow());
      }
    });
    JPanel inputPanel = new JPanel();
    inputPanel.add(addButton);
    inputPanel.add(removeButton);

    Container container = getContentPane();
    container.add(new JScrollPane(table), BorderLayout.CENTER);
    container.add(inputPanel, BorderLayout.NORTH);

    Global.uniFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Global.uniFrame.setSize(800, 300);
    Global.uniFrame.setVisible(true);
  } 
  public static class Global{
      public static JFrame uniFrame = new JFrame();
  }
  private static void createGUI(){
      new ModelJTable();
  }
  public static void main(String args[]) {
      createGUI();
  }
}

我将代码更改为此代码并且它不会显示内容。

Container container = new Container();
container.add(new JScrollPane(table), BorderLayout.CENTER);
container.add(inputPanel, BorderLayout.NORTH);
Global.uniFrame.getContentPane();
Global.uniFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Global.uniFrame.setSize(800, 300);
Global.uniFrame.setVisible(true);

2 个答案:

答案 0 :(得分:3)

因为您的类不会从提供该方法的任何内容扩展

public class ModelJTable{

你目前的班级也没有实施这样的方法......

唯一可能提供此功能的类(在您的示例中)是uniFrame类中的Global

... = Global.uniFrame.getContentPane();

说实话,我会认真避免static对任何gui组件的引用,尤其是当它们未定义时finalstatic引用将被更改,或者如果声明final将您锁定为单一可能性,则存在很大风险。

还有一种风险,即其他一些代码可能会尝试做一些不应该做的事情,比如删除所有内容......

答案 1 :(得分:2)

没有方法getContentPane()。你可能忘了扩展另一堂课。