读取Excel
最后更新:2024-05-23 14:51:32
|
状态:未完成
org.anyline.poi.excel.ExcelUtil提供了读取excel的工具,
file:需要读取的文件
sheet:需要读取的sheet名称或下标
rows:从第几行开始读取
返回二维List<List<String>>
public static List<List<String>> read(File file, int sheet, int rows) public static List<List<String>> read(File file, int sheet) public static List<List<String>> read(File file) public static List<List<String>> read(File file, String sheet, int rows) public static List<List<String>> read(File file, String sheet)
参考【示例源码】