I have a String that holds a path to a file. I want the users to be able to select a path and filename with a file chooser and have the program save the file given in the String variable to a location of their choice. What is the best way to do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Read the JFileChooser tutorial. |
|||
|
|
|
JFileChooser can provide the UI for selecting a file. See the Javadoc for documentation and example code. You may then save the string to a file like this:
|
|||
|
|