반응형

JFileChooser jfc = new JFileChooser();
jfc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
jfc.showDialog(this, null);

File dir = jfc.getSelectedFile();
jt_save_path.setText(dir!=null?dir.getPath():"");



버튼 이벤트에 위와 같이 넣으면 DIRECTORIES_ONLY에 의해 폴더만 선택이 가능한 

파일 탐색창이 뜹니다. 


해당 경로를 선택하면 jt_save_path 부분에 해당 path를 저장합니다. 





출처 : http://happy2ni.egloos.com/2838029





반응형

+ Recent posts