import java.awt.BorderLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class ClosetTableUI extends JFrame{
public ClosetTableUI(ClosetTableCntl theCreatingCntl){
initComponents();
theCTCntl = theCreatingCntl;
}
InitComponents是初始化所有变量的地方。
private void initComponents() {
if(theTopTable == null){
System.out.println("Top Table was null");
}
if(theCTCntl.getTopTableModel() == null){
System.out.println("get Top Table Model was null");
}
这是发生错误的地方:
theTopTable = new JTable(theCTCntl.getTopTableModel());
topNewButton = new javax.swing.JButton();
topDeleteButton = new javax.swing.JButton();
topScrollPane = new javax.swing.JScrollPane(theTopTable);
theBottomTable = new JTable(theCTCntl.getBottomModel());
bottomScrollPane = new javax.swing.JScrollPane(theBottomTable);
bottomNewButton = new javax.swing.JButton();
bottomDeleteButton = new javax.swing.JButton();
theAccessoryTable = new JTable(theCTCntl.getAccessoryModel());
accessoryScrollPane = new javax.swing.JScrollPane(theAccessoryTable);
topTextField = new javax.swing.JTextField();
bottomTextField = new javax.swing.JTextField();
accessoryTextField = new javax.swing.JTextField();
其余部分只是netbeans GUI builder设置各种属性。
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
topNewButton.setText("New Top");
topDeleteButton.setText("Delete Top");
bottomNewButton.setText("New Bottom");
bottomDeleteButton.setText("Delete Bottom");
accessoryNewButton.setText("New Accessory");
accessoryDeleteButton.setText("Delete Accessory");
topTextField.setText("Enter New Top Here");
bottomTextField.setText("Enter New Bottom Here");
accessoryTextField.setText("Enter New Accessory Here");
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addGroup(javax.swing.GroupLayout.Alignment.LEADING, layout.createSequentialGroup()
.addComponent(topDeleteButton)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 114, Short.MAX_VALUE)
.addComponent(topNewButton))
.addGroup(javax.swing.GroupLayout.Alignment.LEADING, layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(bottomNewButton)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addComponent(bottomScrollPane, javax.swing.GroupLayout.DEFAULT_SIZE, 274, Short.MAX_VALUE)
.addComponent(topScrollPane))))
.addComponent(bottomDeleteButton))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(bottomTextField, javax.swing.GroupLayout.PREFERRED_SIZE, 157, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(topTextField, javax.swing.GroupLayout.PREFERRED_SIZE, 159, javax.swing.GroupLayout.PREFERRED_SIZE)))
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addComponent(accessoryScrollPane, javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.LEADING, layout.createSequentialGroup()
.addComponent(accessoryDeleteButton)
.addGap(55, 55, 55)
.addComponent(accessoryNewButton)))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(accessoryTextField, javax.swing.GroupLayout.PREFERRED_SIZE, 157, javax.swing.GroupLayout.PREFERRED_SIZE)))
.addContainerGap(60, Short.MAX_VALUE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(topNewButton)
.addComponent(topDeleteButton)
.addComponent(topTextField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(topScrollPane, javax.swing.GroupLayout.PREFERRED_SIZE, 103, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(bottomDeleteButton)
.addComponent(bottomNewButton)
.addComponent(bottomTextField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(bottomScrollPane, javax.swing.GroupLayout.PREFERRED_SIZE, 110, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(accessoryDeleteButton)
.addComponent(accessoryNewButton)
.addComponent(accessoryTextField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(accessoryScrollPane, javax.swing.GroupLayout.PREFERRED_SIZE, 111, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
accessoryDeleteButton.addActionListener(new DeleteAccessoryListener());
accessoryNewButton.addActionListener(new NewAccessoryListener());
topNewButton.addActionListener(new NewTopListener());
topDeleteButton.addActionListener(new DeleteTopListener());
bottomDeleteButton.addActionListener(new DeleteBottomListener());
bottomNewButton.addActionListener(new NewBottomListener());
this.setVisible(true);
pack();
}// </editor-fold>
这是声明我的变量的地方:
private javax.swing.JButton accessoryDeleteButton;
private javax.swing.JButton accessoryNewButton;
private javax.swing.JScrollPane accessoryScrollPane;
private javax.swing.JTextField accessoryTextField;
private javax.swing.JButton bottomDeleteButton;
private javax.swing.JButton bottomNewButton;
private javax.swing.JScrollPane bottomScrollPane;
private javax.swing.JTextField bottomTextField;
private javax.swing.JButton topDeleteButton;
private javax.swing.JButton topNewButton;
private javax.swing.JScrollPane topScrollPane;
private javax.swing.JTextField topTextField;
JTable theTopTable;
JTable theBottomTable;
JTable theAccessoryTable;
ClosetTableCntl theCTCntl;
最后,这是输出以及我收到的错误消息
Top Table was null
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
at fashionforecast2.ClosetTableUI.initComponents(ClosetTableUI.java:35)
at fashionforecast2.ClosetTableUI.<init>(ClosetTableUI.java:22)
at fashionforecast2.ClosetTableCntl.<init>(ClosetTableCntl.java:15)
at fashionforecast2.MainMenuCntl.getClosetTableCntl(MainMenuCntl.java:29)
at fashionforecast2.MainMenuUI$ClosetListener.actionPerformed(MainMenuUI.java:70)
从我收集的内容来看,我的varible theTopTable为null。但我不确定为什么会这样。我将变量声明到我的类的底部,然后当它给我一个null错误时我正在初始化它。
我感到困惑的是这个;为什么我在尝试初始化TopTable时遇到空错误?当然,TopTable是null,我还没有初始化它。但它在我试图初始化它的行中给了我这个错误。
非常感谢任何帮助。
答案 0 :(得分:1)
initComponents
方法有这行代码:
if(theCTCntl.getTopTableModel() == null){
System.out.println("get Top Table Model was null");
}
但theCTCntl
此处为null
,因为在您的类构造函数中调用initComponents
后正在初始化:
public ClosetTableUI(ClosetTableCntl theCreatingCntl){
initComponents();
theCTCntl = theCreatingCntl;
}
只需更改代码的顺序:
public ClosetTableUI(ClosetTableCntl theCreatingCntl){
theCTCntl = theCreatingCntl;
initComponents();
}
更多信息: