?? 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);
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -