| Author |
what is the actual use of getselecttedfile() method in jfilechooser ?
|
naved momin
Ranch Hand
Joined: Jul 03, 2011
Posts: 675
|
|
see i know that getselectedfile returns the instance of the file but here i m saving a file offcource i m taking the file name from the user but why getselectedfile() method is used in this method
i understand that at the time of reading a file we ll need getselectedfile() to get the files instance so that we can read that file
but i didnt understand what the method is doing here
i mean getselectedfile() method
|
The Only way to learn is ...........do!
Visit my blog http://inaved-momin.blogspot.com/
|
 |
Matthew Brown
Bartender
Joined: Apr 06, 2010
Posts: 3795
|
|
|
How else do you know where to save the file, if you don't use getSelectedFile()? You're using a Save file dialog to allow the user to select a location, and that method tells you what they've chosen.
|
 |
naved momin
Ranch Hand
Joined: Jul 03, 2011
Posts: 675
|
|
Matthew Brown wrote:How else do you know where to save the file, if you don't use getSelectedFile()? You're using a Save file dialog to allow the user to select a location, and that method tells you what they've chosen.
you mean to say which location the user wants to save the file
the getselectedfile() that ?
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
Yes.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
Minh Nam
Ranch Hand
Joined: Sep 10, 2011
Posts: 57
|
|
According to the Java doc:
public File getSelectedFile()
Returns the selected file. This can be set either by the programmer via setFile or by a user action, such as either typing the filename into the UI or selecting the file from a list in the UI.
Returns:
the selected file
Make a habit to read the Java doc may save our time!
|
Advanced java topics
|
 |
 |
|
|
subject: what is the actual use of getselecttedfile() method in jfilechooser ?
|
|
|