国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

java excel類

hiyayiji / 912人閱讀

摘要:單元格各類型數據讀取基本類型處理的數據包括字符型數據,數字日期公式等。下面是單元格類型說明實例解析中數據,要求轉換為文本方式存儲寫一個解析的抽象類版本的版本的解析的文件格式有誤

1.單元格各類型數據讀取

1.1 基本類型

處理的Excel數據包括字符型數據,數字、日期、公式等。

下面是單元格類型說明:

2實例
解析excel中數據,要求轉換為文本方式存儲
2.1 寫一個excel解析的抽象類

public abstract class ExcelParser {

        private String fileName;
        private InputStream inputStream;
    
        private final static String excel2003L = ".xls";//2003- 版本的excel
        private final static String excel2007U = ".xlsx";//2007+ 版本的excel
    
        protected final static DecimalFormat decimalFormat = new DecimalFormat("0");
        protected final static SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy/MM/dd");
    
        protected final static String[] columnStr = new String[]{
                "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"
        };
           protected OrderExcelParser(String fileName, InputStream inputStream) {
            this.fileName = fileName;
            this.inputStream = inputStream;
        }
    
        protected Workbook getWorkbook() throws Exception {
            try {
                String fileType = fileName.substring(fileName.lastIndexOf("."));
                if (excel2003L.equals(fileType)) {
                    return new HSSFWorkbook(inputStream); //2003-
                } else if (excel2007U.equals(fileType)) {
                    return new XSSFWorkbook(inputStream); //2007+
                } else {
                    throw new Exception();
                }
            } catch (Exception e) {
                throw new Exception("解析的文件格式有誤!");
            }
        }
    
        protected abstract void parseTitles(int rowIndex) throws Exception;
    
        protected String getCellStringValue(Cell cell) throws Exception {
            String cellValue = "";
            if (cell == null) {
                return cellValue;
            } else if (cell.getCellType() == Cell.CELL_TYPE_STRING) {
                cellValue = cell.getStringCellValue();
            } else if (cell.getCellType() == Cell.CELL_TYPE_NUMERIC) {
                if (HSSFDateUtil.isCellDateFormatted(cell)) {
                    double d = cell.getNumericCellValue();
                    Date date = HSSFDateUtil.getJavaDate(d);
                    cellValue = simpleDateFormat.format(date);
                } else {
                    cellValue = decimalFormat.format((cell.getNumericCellValue()));
                }
            } else if (cell.getCellType() == Cell.CELL_TYPE_BLANK) {
                cellValue = "";
            } else if (cell.getCellType() == Cell.CELL_TYPE_BOOLEAN) {
                cellValue = String.valueOf(cell.getBooleanCellValue());
            } else if (cell.getCellType() == Cell.CELL_TYPE_ERROR) {
                cellValue = "";
            } else if (cell.getCellType() == Cell.CELL_TYPE_FORMULA) {
                cellValue = cell.getCellFormula();
            }
           
            return cellValue.trim();
        }
    }

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/67072.html

相關文章

  • Java對象和Excel轉換工具XXL-EXCEL

    摘要:一行代碼完成對象和之間的轉換。說明屬性列名稱四版本更新日志版本,新特性導出支持對象裝換為,并且支持字節數組等多種導出方式導入支持轉換為對象,并且支持文件路徑等多種導入方式版本,新特性字段支持類型。 《Java對象和Excel轉換工具XXL-EXCEL》 showImg(https://segmentfault.com/img/remote/1460000012470335);showI...

    mj 評論0 收藏0
  • java 導出 excel 最佳實踐,java 大文件 excel 避免OOM(內存溢出) exce

    摘要:消費之后,多線程處理文件導出,生成文件后上傳到等文件服務器。前端直接查詢并且展現對應的任務執行列表,去等文件服務器下載文件即可。這客戶體驗不友好,而且網絡傳輸,系統占用多種問題。拓展閱讀導出最佳實踐框架 產品需求 產品經理需要導出一個頁面的所有的信息到 EXCEL 文件。 需求分析 對于 excel 導出,是一個很常見的需求。 最常見的解決方案就是使用 poi 直接同步導出一個 exc...

    K_B_Z 評論0 收藏0
  • POI技術—用于java開發解析excel的抽象

    摘要:單元格各類型數據讀取基本類型處理的數據包括字符型數據,數字日期公式等。下面是單元格類型說明實例解析中數據,要求轉換為文本方式存儲寫一個解析的抽象類版本的版本的解析的文件格式有誤 1.單元格各類型數據讀取 1.1 基本類型 處理的Excel數據包括字符型數據,數字、日期、公式等。 下面是單元格類型說明: showImg(https://segmentfault.com/img/bVMjd...

    xfee 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<