How to get directory path using JFileChooser?

59,458

Solution 1

Try something like

myTextField.setText(myFileChooser.getSelectedFile().getAbsolutePath());

What you are doing there is retrieving the File object from the file chooser, then grabbing its path and throwing it into the text field.

Solution 2

Check out the JFileChooser.getCurrentDirectory() function:

http://download.oracle.com/javase/1.4.2/docs/api/javax/swing/JFileChooser.html#getCurrentDirectory())

Share:
59,458
Henry E. Wilson
Author by

Henry E. Wilson

Updated on October 26, 2020

Comments

  • Henry E. Wilson
    Henry E. Wilson over 3 years

    I have a small java GUI application with a text field on it. When the user clicks the text field an event is triggered and the JFileChooser is launched. It's restricted to directories only.

    What I'm trying to do is to get the full path of the directory that was chosen and put it in the text field.

    I have no idea how to do this, I've searched through a ton of java tutorials and documentations and I can't find an answer. Can someone help me?

    To clarify: I want to get the full path as a string and put it in the text field, overwriting anything that was there before.

  • Henry E. Wilson
    Henry E. Wilson over 13 years
    Thank you! I've only recently started learning java so I wasn't sure what to do... now it seems so obvious :P