this is my code -> `InputStream modelIn = new FileInputStream("en-sent.bin");`
why its showing filenotfound exception, though i have kept the file in the project folder?
Printable View
this is my code -> `InputStream modelIn = new FileInputStream("en-sent.bin");`
why its showing filenotfound exception, though i have kept the file in the project folder?
Do:
That will show you where it is looking for the file.Code:File file = new File("en-sent.bin");
System.out.println(file.getAbsolutePath());
thnx