JFileChooser s;//creating object of JFileChoseor s = new JFileChooser(); s.showOpenDialog(null);//opening dialog box File F=s.getSelectedFile();//storing file to variable f D.fp=F.getAbsolutePath();//storing file path to variable fp path.setText(D.fp);//displaying path to textfield path