• POI读取excel单元格,获取单元格各类型值,返回字符串类型


    package a;
    
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.text.DecimalFormat;
    
    import org.apache.commons.lang3.StringUtils;
    import org.apache.poi.hssf.usermodel.HSSFDateUtil;
    import org.apache.poi.hssf.usermodel.HSSFWorkbook;
    import org.apache.poi.ss.usermodel.Cell;
    import org.apache.poi.ss.usermodel.FormulaEvaluator;
    import org.apache.poi.ss.usermodel.Row;
    import org.apache.poi.ss.usermodel.Sheet;
    
    import landprice.util.DateUtil;
    
    public class TestReadFormula {
        private static FormulaEvaluator evaluator;
        public static void main(String[] args) throws IOException {
            InputStream is=new FileInputStream("E:/temp/tempfile/1.xls");
            HSSFWorkbook wb=new HSSFWorkbook(is);
            Sheet sheet=wb.getSheetAt(0);
            
            evaluator=wb.getCreationHelper().createFormulaEvaluator();
            
            for (int i = 0; i <1; i++) {
                Row  row=sheet.getRow(i);
                for (Cell cell : row) {
                    System.out.println(getCellValueByCell(cell));
                }
            }
            is.close();
        }
        
        //获取单元格各类型值,返回字符串类型
        private static String getCellValueByCell(Cell cell) {
        	//判断是否为null或空串
            if (cell==null || cell.toString().trim().equals("")) {
                return "";
            }
            String cellValue = "";
            int cellType=cell.getCellType();
            if(cellType==Cell.CELL_TYPE_FORMULA){ //表达式类型
            	cellType=evaluator.evaluate(cell).getCellType();
            }
            
            switch (cellType) {
            case Cell.CELL_TYPE_STRING: //字符串类型
                cellValue= cell.getStringCellValue().trim();
                cellValue=StringUtils.isEmpty(cellValue) ? "" : cellValue;  
                break;
            case Cell.CELL_TYPE_BOOLEAN:  //布尔类型
            	cellValue = String.valueOf(cell.getBooleanCellValue());  
                break;  
            case Cell.CELL_TYPE_NUMERIC: //数值类型
            	 if (HSSFDateUtil.isCellDateFormatted(cell)) {  //判断日期类型
            		 cellValue =	DateUtil.formatDateByFormat(cell.getDateCellValue(), "yyyy-MM-dd"); 
                 } else {  //否
                	 cellValue = new DecimalFormat("#.######").format(cell.getNumericCellValue());  
                 }  
                break;
            default: //其它类型,取空串吧
            	cellValue = "";
                break;
            }
            return cellValue;
        }
        
       
    }
    

     

  • 相关阅读:
    Docker和K8S
    CoBot 库博源代码缺陷检测工具
    Hobot软件成分分析平台
    Black duck(黑鸭子软件)开源代码审计管理测试平台
    python之理解super及MRO列表
    Python中MRO排序原理
    python中with的用法
    使用微服务架构重构支付网关
    支付网关的设计原则
    python内存管理--垃圾回收
  • 原文地址:https://www.cnblogs.com/zy2009/p/6759933.html
Copyright © 2020-2023  润新知