读取 xlsx 文件时出现 FileNotFoundException

FileNotFoundException while reading a xlsx file

我尝试使用以下代码从项目文件夹中读取 .xlsx 文件,但它总是抛出 FileNotFoundException。我附上了文件所在的项目结构。

public static void main(String[] args)  {
    try {
        String excelFilePath = "‪DataModel.xlsx";
        File file = new File(excelFilePath);
        FileInputStream fis = new FileInputStream(file);         

    } catch (Exception ex) {
        System.out.print(ex);
    }
}

这是我通常的处理方式:

File file = new File( javaApplication2.class.getResource( excelFilePath ).getPath() );

classLoader.getResource() 解决了问题