Method returns FileNotFoundException
:
String statSource = 'some path';
try {
File file = new File(statSource);
if (!file.exists())
{
System.out.println(file.getPath() + " doesn't exist!");
}
else
{
System.out.println("OK!");
}
// otevření CSV
csv = new CsvReader(statSource, ';', Charset.forName("windows-1250"));
}
At first I get 'OK!' message, but on the last line I get FileNotFoundException
. File is located on a local hard drive.
DO you have any idea what's wrong?
Assuming you are talking about this class, and that you are using JDK 7, do yourself a favour and use this:
If the file does not exist or whatever, you will at least get a meaningful exception:
AccessDeniedException
,NoSuchFileException
, etc; all of them inheritingFileSystemException
.