package com.ruoyi.aicall.utils; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.CellType; public class XSSFUtils { public static String getCellString(Cell cell) { if (cell == null) return ""; cell.setCellType(CellType.STRING); return cell.getStringCellValue() == null ? "" : cell.getStringCellValue().trim(); } }