我有一个JTable,我试图填充位于特定文件夹中的文件名。
我可以加载JTable,看起来好像是从数据中填充的,但JTable行中没有出现测试。
我可以告诉它加载文件,因为当我在文件夹中放置2个文件时,JTable在加载时会创建2行。我可以更改文件夹中的文件数量,当我重新运行程序时,它会将确切的行数加载为文件夹中的文件。
有什么想法吗?我使用这种填充其他几个表的方法,它们似乎有用,所以我真的很困惑为什么这个没有。
package testTable;
import java.awt.BorderLayout;
public class main extends JFrame {
public JPanel contentPane;
public JTable table;
public DefaultTableModel rulesModel;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
main frame = new main();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame.
*/
@SuppressWarnings("serial")
public main() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 450, 300);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
JScrollPane scrollPane = new JScrollPane();
GroupLayout gl_contentPane = new GroupLayout(contentPane);
gl_contentPane.setHorizontalGroup(
gl_contentPane.createParallelGroup(Alignment.TRAILING)
.addGroup(Alignment.LEADING, gl_contentPane.createSequentialGroup()
.addContainerGap()
.addComponent(scrollPane, GroupLayout.DEFAULT_SIZE, 414, Short.MAX_VALUE))
);
gl_contentPane.setVerticalGroup(
gl_contentPane.createParallelGroup(Alignment.LEADING)
.addGroup(gl_contentPane.createSequentialGroup()
.addContainerGap()
.addComponent(scrollPane, GroupLayout.PREFERRED_SIZE, 187, GroupLayout.PREFERRED_SIZE)
.addContainerGap(54, Short.MAX_VALUE))
);
rulesModel = new DefaultTableModel();
rulesModel.setColumnIdentifiers(new String[] {"File Name"});
table = new JTable(rulesModel) {
public boolean isCellEditable(int row, int column) {
return false;
}
public Component prepareRenderer(TableCellRenderer renderer, int row, int column) {
return (Component) null;
}
};
File folder = new File("C:\\Scripts\\new\\files\\folder\\");
File[] listOfFiles = folder.listFiles();
for (File file : listOfFiles) {
if (file.isFile()) {
String filename = file.getName();
rulesModel.addRow(new String[] {filename});
System.out.println(filename);
}
}
table.setModel(rulesModel);
scrollPane.setViewportView(table);
contentPane.setLayout(gl_contentPane);
}
}
答案 0 :(得分:2)
这让你搞砸了:
public Component prepareRenderer(TableCellRenderer renderer, int row,
int column) {
return (Component) null;
}
它接受JTable存在的任何单元格渲染器,抛弃它,从而保证表格不会显示任何信息。所以摆脱这种错误的覆盖。
虽然这确实提出了一个问题:
为什么这个代码甚至在那里,因为它保证确保什么都没有显示?为什么要摆脱细胞渲染器?