• category: swing folder: ROFileChooser title: JFileChooserを編集不可にする tags: [JFileChooser, UIManager] author: aterai pubdate: 2005-05-16T06:02:26+09:00 description: JFileChooser内でのファイル名変更や新規フォルダ作成などの編集を不可にします。 image: https://lh4.googleusercontent.com/_9Z4BYR88imo/TQTR_zuU1UI/AAAAAAAAAiE/nZgj97xKO24/s800/ROFileChooser.png

概要

JFileChooser内でのファイル名変更や新規フォルダ作成などの編集を不可にします。

サンプルコード

JButton readOnlyButton = new JButton("readOnly");
readOnlyButton.addActionListener(e -> {
  UIManager.put("FileChooser.readOnly", Boolean.TRUE);
  JFileChooser fileChooser = new JFileChooser();
  int retValue = fileChooser.showOpenDialog(getRootPane());
  if (retValue == JFileChooser.APPROVE_OPTION) {
    log.setText(fileChooser.getSelectedFile().getAbsolutePath());
  }
});
View in GitHub: Java, Kotlin

解説

JDK 1.5.0以上でUIManager.put("FileChooser.readOnly", Boolean.TRUE);を設定すると、JFileChooserがリードオンリーになり、ファイル名の変更や新規フォルダの作成などが禁止されます。

参考リンク

コメント