我有一个代码在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)
我哪里做错了?
1条答案
按热度按时间hivapdat1#
尝试将此添加到清单中: