读取excel,数字转字符串

           import org.apache.poi.*
           Cell cell= row.getCell(0);
           cell.setCellType(XSSFCell.CELL_TYPE_STRING);
           cell.getStringCellValue();

你可能感兴趣的:(excel)