小常识,就是总是忘,干脆整理下:

JFileChooser fileChser = new JFileChooser();
fileChser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
int chooseFlag = fileChser.showOpenDialog(con);
if (JFileChooser.APPROVE_OPTION == chooseFlag) {
}