Hi,
When I output something to a file, I hope something pop up that let the
user to select the directory and input the file name. I don't know how
to do it. I can hard-code the file name in my program and use
PrintWriter class to do it, like:
PrintWriter outputStream = new PrintWriter(new FileOutputStream("out.txt"));
outputStream.println("hello world");
outputStream.println("how are you?);
Thank you very much for your help.
su_dang@hotmail.com - 27 Sep 2006 16:36 GMT
> Hi,
>
[quoted text clipped - 9 lines]
>
> Thank you very much for your help.
Maybe this is the class you are looking for
javax.swing.JFileChooser