📄 e896. showing hidden files in a jfilechooser dialog.txt
字号:
By default, hidden files are not shown in a file chooser dialog.
JFileChooser chooser = new JFileChooser();
// By default, hidingEnabled is true
boolean hidingEnabled = chooser.isFileHidingEnabled();
// Display hidden files
chooser.setFileHidingEnabled(false);
// Show the dialog; wait until dialog is closed
chooser.showOpenDialog(frame);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -