Hello,
This should work :
public void chooseFile() {
JFileChooser() chooser = new JFileChooser();
chooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
chooser.showOpenDialog(f); //f is a JFrame
System.out.println.setText("" +(Object)chooser.getSelectedFile());
}
Hope it works,
Ben