读取xlsx文件时出现FileNotFoundException

时间:2015-08-20 01:03:34

标签: java filereader filenotfoundexception fileinputstream

我正在尝试使用以下代码从项目文件夹中读取.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);
    }
}

enter image description here

2 个答案:

答案 0 :(得分:0)

这就是我通常会接近它的方式:

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

答案 1 :(得分:0)

classLoader.getResource()解决了问题