This commit is contained in:
Denis Molony 2016-12-13 15:35:10 +11:00
parent a7ef714943
commit b090cb5ec4
2 changed files with 0 additions and 2 deletions

BIN
resources/disklist.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 504 KiB

View File

@ -17,14 +17,12 @@ public class CSVFileWriter
FileWriter writer;
JFileChooser fileChooser = new JFileChooser ();
// fileChooser.setCurrentDirectory (new File (csvFile));
fileChooser.setSelectedFile (new File (csvFile));
int returnValue = fileChooser.showSaveDialog (null);
if (returnValue != JFileChooser.APPROVE_OPTION)
return;
File selectedFile = fileChooser.getSelectedFile ();
System.out.println (selectedFile.getName ());
try
{