I am trying to read a file in java. The following is the code.
String str = ".\\SomeFileName";
File file = new File(str);
InputStream is = new FileInputStream(file.getPath());
A FileNotFoundException is thrown in last line. Can some one help?