XSSFUtils.java 375 B

123456789101112
  1. package com.ruoyi.aicall.utils;
  2. import org.apache.poi.ss.usermodel.Cell;
  3. import org.apache.poi.ss.usermodel.CellType;
  4. public class XSSFUtils {
  5. public static String getCellString(Cell cell) {
  6. if (cell == null) return "";
  7. cell.setCellType(CellType.STRING);
  8. return cell.getStringCellValue() == null ? "" : cell.getStringCellValue().trim();
  9. }
  10. }