Привет, ребята, я создал файл xlsx в указанном месте, как показано на рисунке:
and I have a code as below:-
package com.nischal;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class FileRead {
public static void main(String[] args) throws IOException {
File src = new File("D:\\Nischal.xlsx");
FileInputStream fis=new FileInputStream(src);
XSSFWorkbook wb=new XSSFWorkbook(fis);
XSSFSheet sh1= wb.getSheetAt(0);
System.out.println(sh1.getRow(0).getCell(0).getStringCellValue());
System.out.println(sh1.getRow(0).getCell(1).getStringCellValue());
}
}
Though there is nothing wrong it always yields the error called: (The system cannot find the file specified)
Image of the Error:
введите описание изображения здесь
Любые предложения будут полезны