java文件選擇對話框,文件名不可編輯

思想:獲取文件選擇對話框中“文件名”顯示欄的組件,設置組件不可編輯。

import java.awt.Component;
import java.awt.Color;

import javax.swing.*;

/**
 * java文件選擇對話框
 * 文件名不可編輯
 */

public class JFileChooserUI {
    private static JLabel findLabel(JComponent comp, String s) {
        JLabel label = null;
        if (comp instanceof JLabel) {
            if (((JLabel) comp).getText().equals(s)) {
                label = (JLabel) comp;
            }
        } else if (comp instanceof JComponent) {
            Component[] comps = comp.getComponents();
            for (int i = 0; i < comps.length; i++) {
                if (comps[i] instanceof JComponent) {
                    label = findLabel((JComponent) comps[i], s);
                    if (label != null) {
                        break;
                    }
                }
            }
        }
        return label;
    }

    public static Component getLabelForInChooser(JFileChooser chooser, String key) {
        java.util.Locale l = chooser.getLocale();
        String s = UIManager.getString(key, l);

        javax.swing.plaf.FileChooserUI ui = chooser.getUI();
        int count = ui.getAccessibleChildrenCount(chooser);
        for (int i = 0; i < count; i++) {
            javax.accessibility.Accessible a =
                    ui.getAccessibleChild(chooser, i);
            JLabel label = findLabel((JComponent) a, s);
            if (label != null) {
                return label.getLabelFor();
            }
        }
        return null;
    }

    public static void main(String[] args) {
        JFileChooser chooser = new JFileChooser("");
        Component comp = getLabelForInChooser(chooser, "FileChooser.fileNameLabelText");
        if (comp instanceof JTextField) {
            JTextField field = ((JTextField) comp);
            field.setEditable(false);

            //   隨意
            //   field.setBackground(Color.WHITE);
        }
        chooser.showOpenDialog(null);
    }
}
發佈了98 篇原創文章 · 獲贊 1 · 訪問量 7萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章