0
我已經把一個名爲門的XLSX文件,你可以在下面的照片看到:打開文件與項目文件
但是我怕我不訪問正確使用FileInputStream
FileInputStream file = null;
try {
file = new FileInputStream(new File("menuA.xlsx"));
} catch (Exception e) {
e.printStackTrace();
}
XSSFWorkbook workbook=null;
try {
workbook = new XSSFWorkbook(file);
} catch (IOException e) {
e.printStackTrace();
}
//create a sheet object
XSSFSheet sheet = workbook.getSheetAt(0);
//that is for evaluate the cell type
FormulaEvaluator formulaEvaluator = workbook.getCreationHelper().createFormulaEvaluator();
我已經從NetBeans轉移到了Android Studio,我的代碼在Android Studio中完美運行。
事情是Apache需要FileInputStream來讀取文件。 FileInputStream不接受getAssets。我試圖用下面的代碼: 'InputStream file = context.getAssets()。open(「menuaa.xlsx」);' 但是文件仍然沒有被讀取 – Rapharel