我有一个用作文件树的JTree。如果我选择一个新文件,并选择与已选择的文件相同的文件,则该树会因某种原因冻结。它应该删除包含树的旧JScrollPane并用新的替换它,如果我选择一个不同的文件,但它没有相同的文件,它可以正常工作。 GUI的其余部分仍然有效,它只是冻结的树。以下是相关代码:
if ("browse".equals(e.getActionCommand())) {
returnVal = fc.showOpenDialog(DSAuto.this);
if (returnVal == JFileChooser.APPROVE_OPTION) {
File file = fc.getSelectedFile();
filename = file.getAbsolutePath();
l1.setText("Job Location: " + filename);
c.fill = GridBagConstraints.BOTH;
c.weightx = 1.0;
c.gridx = 0;
c.gridy = 1;
c.gridwidth = 10;
c.gridheight = 9;
c.ipady = 0;
if (rm)
pane.remove(ft1);
else
pane.remove(sp1);
if (rm2) {
pane.remove(l3);
rm2 = false;
}
if (!(file.isDirectory() || file.isFile())) {
l3 = new JLabel("404 File Not Found");
pane.add(l3, c);
rm2 = true;
} else {
ft1 = new FileTree(file);
ft1.all = allB;
pane.add(ft1, c);
rm = true;
}
}
}
如果需要,我也可以为FileTree类提供代码。
答案 0 :(得分:3)
应删除旧框架并将其替换为新框架
您无法在JFrame中添加/删除JFrame,因此我不知道该注释的含义。
不要删除/添加组件?如果要更新现有组件,请更改模型。那就是:
tree.setModel(...);
或者,如果您删除/添加组件,则需要使用:
panel.revalidate();
panel.repaint();