Android Studio 错误“打开失败:ENOENT(没有这样的文件或目录)”

rsl1atfo  于 2023-01-26  发布在  Android
关注(0)|答案(1)|浏览(193)

我有一个代码在Eclipse上运行良好,现在我转移到Android Studio,由于某种原因,我无法打开. xls文件。
我使用的是jxl库,所以我将jar添加到项目的库中,并且:<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />添加到manifest中,打开该文件的代码为:

final String EXCEL_FILE_LOCATION = "src/exercise.xls";
    Workbook workbook = Workbook.getWorkbook(new File(EXCEL_FILE_LOCATION));

文件和目录都确实存在,但它抛出exeption W/System.err: java.io.FileNotFoundException: src/exercise.xls: open failed: ENOENT (No such file or directory)
我哪里做错了?

hivapdat

hivapdat1#

尝试将此添加到清单中:

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:requestLegacyExternalStorage="true" //Add this Line
android:label="@string/app_name">

相关问题