JFileChooser 只选(展示)文件夹

JFileChooser 只选(显示)文件夹
小常识,就是总是忘,干脆整理下:
JFileChooser fileChser = new JFileChooser();
fileChser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
int chooseFlag = fileChser.showOpenDialog(con);
if (JFileChooser.APPROVE_OPTION == chooseFlag) {
}