1.读取Excel表格数据
private static void writeStore(String path) throws Exception {
Workbook workbook = new XSSFWorkbook(new File(path));
//读取excel中的sheet表名
Sheet sheet = workbook.getSheet("xxx表名");
int totalRow = sheet.getLastRowNum();
System.out.println("总共:" + totalRow);
//循环独处表中每一行中每一列的值
for (int i = 1; i <= totalRow; i++) {
Row row