如何从JFileChooser中删除组件(文件类型);标签及其组合框?
我有以下代码:
JFileChooser fileChooser = new JFileChooser();
fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
fileChooser.setDialogTitle("Select Folder");
fileChooser.setApproveButtonText("Select Folder");
fileChooser.setAcceptAllFileFilterUsed(false);
hideComponents(fileChooser.getComponents());
private void hideComponents(Component[] components) {
for (int i= 0; i < components.length; i++) {
if (components[i] instanceof JPanel)
hideComponents(((JPanel)components[i]).getComponents());
else if (//component to remove)//what do I check for in here?
components[i].setVisible(false);
}
答案 0 :(得分:4)
我恭敬地不同意。 是的设施,我一直成功使用它,尤其是JFileChooser,特别是让被诅咒的野兽在DOS和Mac上运行。网上有很多例子;这是另一个,从我的工作小程序中挑选出来的。 (此代码段还会在所有组件上设置背景颜色。)
简而言之:原始海报在正确的轨道上 - 遍历JFileChooser.getComponents()。它们不容易识别组件,因此我所做的是寻找文本标签然后获得其所需的祖先。然后,您可以使用Container.getLayout()。remove(component)从布局中删除它,或者,您可以设置setVisible(false),或者有时可以setPreferredSize(new Dimension(0,0))使其消失。 / p>
// in wrapper:
modifyJChooser(fileChooser.getComponents(), Color.white);
// in component:
private void modifyJChooser(Component[] jc, Color bg) {
for (int i = 0; i < jc.length; i++) {
Component c = jc[i];
// hide file name selection
if (c.getClass().getSimpleName().equals("MetalFileChooserUI$3")) {
c.getParent().setVisible(false);
}
if (c instanceof JComboBox) {
Object sel = ((JComboBox) c).getSelectedItem();
if (sel.toString().contains("AcceptAllFileFilter")) {
c.setVisible(false);
}
} else if (c instanceof JLabel) {
// **** This is the part that the original poster is looking for ****
String text = ((JLabel) c).getText();
if (text.equals("Files of Type:") || text.equals("File Name:") || text.equals("Folder Name:")) {
c.getParent().getParent().remove(c.getParent());
}
} else if (c instanceof JButton) {
JButton j = (JButton) c;
String txt = j.getText();
if (txt != null) {
if (JCHOOSER_NEW_FOLDER.equalsIgnoreCase(txt)) {
j.getParent().setVisible(false); // Disable New Folder on Mac OS
} else if (JCHOOSER_BTN_CANCEL.equalsIgnoreCase(txt)) {
Component parent = c.getParent();
((Container) parent).remove(c);
}
}
}
if (c instanceof Container)
modifyJChooser(((Container) c).getComponents(), bg);
c.setBackground(bg);
}
}
警告:这会留下一些空隙,其中移除的组件曾经存在。我无法确定其来源;如果有人有线索,请发帖。
结果是这样的(注意我在代码片段中没有显示其他修改);
答案 1 :(得分:0)
JFileChooser并非旨在隐藏其组件。 API中没有设施来执行此操作。由于组件是私有的,因此您无权访问它们,也无法编写代码来自行隐藏它们。
你可能不应该这样做。您可以通过设置“所有文件”过滤器而不使用其他过滤器来禁用控件,在这种情况下,组件变得无关紧要。
从技术上讲,你可以通过使用Reflection和违反类保护来做到这一点,但除非它对你的app绝对关键,否则不要这样做。