"java.io.FileNotFoundException" occurs eventhough file present in location
While try to run code containing the following snippet,I am getting ERROR----
java.io.FileNotFoundException: C:\Documents and Settings\User_2\workspace\test\src\Login_Credentia ls1.xls (The system cannot find the file specified)
Please see the code below-
// Read data from excel sheet
FileInputStream fi = new FileInputStream("C:\\Documents and Settings\\User_2\\workspace\\test\\src\\Login_Cred entials1.xls");
Workbook w = Workbook.getWorkbook(fi);
Sheet s = w.getSheet(0);
String a[][] = new String[s.getRows()][s.getColumns()];
// Write the input data into another excel file
FileOutputStream fo = new FileOutputStream("C:\\Documents and Settings\\User_2\\workspace\\test\\src\\LoginResul t1.xls");
WritableWorkbook wwb = Workbook.createWorkbook(fo);
WritableSheet ws = wwb.createSheet("loginresult1", 0);