When you click twice (not double click) on a file in JFileChooser, you can rename the selected file. How to disable this feature? I've tried with
UIManager.put("FileChooser.readOnly", Boolean.TRUE);
but it doesn't work.
|
When you click twice (not double click) on a file in JFileChooser, you can rename the selected file. How to disable this feature? I've tried with
but it doesn't work. |
||||
| show 1 more comment |
|
For a manual solution to remove the MouseListener from the JList used to display the filenames see: https://forums.oracle.com/forums/thread.jspa?messageID=9933325� |
|||
|
|
|
Surprisingly, you cannot disable renaming files/creating new directories from JFileChooser itself. As you correctly surmised, you need to disable this FileChooser "feature" from UIManager instead. Here's a snippet that might help: http://www.coderanch.com/t/555535/GUI/java/FileChooser-readOnly
The key thing is to set "FileChooser.readOnly" BEFORE you create the file chooser. |
|||||||||||||
|
|
Customizing a JFileChooser Look and Feel has some rename constants Your static should go into the Alternatively do |
|||||
|
JFileChooserinstance? – mre Nov 18 '11 at 20:10