List<List<Object>> importFile = ExcelImport.importFile(file);
时间: 2024-06-02 11:13:35 浏览: 53
Import:导入excel
This code declares a variable called "importFile" of type List<List<Object>> and assigns it the value returned by the method "importFile" from the "ExcelImport" class, which takes a file as a parameter. The method is likely designed to read data from an Excel file and return it as a list of lists of objects, where each inner list represents a row and each object represents a cell value in that row.
阅读全文