I think the problem is in the File file .
Try declaring file outside the if block.
File file = null; if( returnValue == JFileChooser.APPROVE_OPTION ) { file = chooser.getSelectedFile() ; } if(file != null) { String filePath = file.getPath(); }
source share