Search in sources :

Example 1 with CellData

use of com.alibaba.excel.metadata.CellData in project ruoyi-vue-pro by YunaiV.

the class DictConvert method convertToExcelData.

@Override
public CellData<String> convertToExcelData(Object object, ExcelContentProperty contentProperty, GlobalConfiguration globalConfiguration) {
    // 空时,返回空
    if (object == null) {
        return new CellData<>("");
    }
    // 使用字典格式化
    String type = getType(contentProperty);
    String value = String.valueOf(object);
    DictDataRespDTO dictData = DictFrameworkUtils.getDictDataFromCache(type, value);
    if (dictData == null) {
        log.error("[convertToExcelData][type({}) 转换不了 label({})]", type, value);
        return new CellData<>("");
    }
    // 生成 Excel 小表格
    return new CellData<>(dictData.getLabel());
}
Also used : CellData(com.alibaba.excel.metadata.CellData) DictDataRespDTO(cn.iocoder.yudao.framework.dict.core.dto.DictDataRespDTO)

Example 2 with CellData

use of com.alibaba.excel.metadata.CellData in project force-oneself by Force-oneself.

the class AutoColumnWidthStrategy method dataLength.

private Integer dataLength(List<CellData> cellDataList, Cell cell, Boolean isHead) {
    if (isHead != null && isHead) {
        return autoLength(cell.getStringCellValue());
    }
    CellData cellData = cellDataList.get(0);
    CellDataTypeEnum type = cellData.getType();
    if (type == null) {
        return -1;
    }
    switch(type) {
        case STRING:
            return this.autoLength(cellData.getStringValue());
        case BOOLEAN:
            return this.autoLength(cellData.getBooleanValue().toString());
        case NUMBER:
            return this.autoLength(cellData.getNumberValue().toString());
        default:
            return -1;
    }
}
Also used : CellDataTypeEnum(com.alibaba.excel.enums.CellDataTypeEnum) CellData(com.alibaba.excel.metadata.CellData)

Example 3 with CellData

use of com.alibaba.excel.metadata.CellData in project pancm_project by xuwujing.

the class EasyExcelTest method simpleRead.

/**
 * 最简单的读
 * <p>
 * 1. 创建excel对应的实体对象 参照{@link DemoData}
 * <p>
 * 2. 由于默认一行行的读取excel,所以需要创建excel一行一行的回调监听器,参照{@link DemoDataListener}
 * <p>
 * 3. 直接读即可
 */
@Test
public void simpleRead() {
    // 写法1:JDK8+ ,不用额外写一个DemoDataListener
    // since: 3.0.0-beta1
    String fileName = "/home" + "demo" + File.separator + "demo.xlsx";
    // 这里 需要指定读用哪个class去读,然后读取第一个sheet 文件流会自动关闭
    // 这里每次会读取3000条数据 然后返回过来 直接调用使用数据就行
    // EasyExcel.read(fileName, DemoData.class, new PageReadListener<DemoData>(dataList -> {
    // for (DemoData demoData : dataList) {
    // log.info("读取到一条数据{}", JSON.toJSONString(demoData));
    // }
    // })).sheet().doRead();
    // 写法2:
    // 匿名内部类 不用额外写一个DemoDataListener
    fileName = "/home" + "demo" + File.separator + "demo.xlsx";
    // 这里 需要指定读用哪个class去读,然后读取第一个sheet 文件流会自动关闭
    EasyExcel.read(fileName, DemoData.class, new ReadListener<DemoData>() {

        /**
         * 单次缓存的数据量
         */
        public static final int BATCH_COUNT = 100;

        /**
         *临时存储
         */
        private List<DemoData> cachedDataList = new ArrayList<>();

        /**
         * All listeners receive this method when any one Listener does an error report. If an exception is thrown here, the
         * entire read will terminate.
         *
         * @param exception
         * @param context
         * @throws Exception
         */
        @Override
        public void onException(Exception exception, AnalysisContext context) throws Exception {
        }

        /**
         * When analysis one head row trigger invoke function.
         *
         * @param headMap
         * @param context
         */
        @Override
        public void invokeHead(Map<Integer, CellData> headMap, AnalysisContext context) {
        }

        @Override
        public void invoke(DemoData data, AnalysisContext context) {
            cachedDataList.add(data);
            if (cachedDataList.size() >= BATCH_COUNT) {
                saveData();
                // 存储完成清理 list
                cachedDataList = new ArrayList<>();
            }
        }

        /**
         * The current method is called when extra information is returned
         *
         * @param extra   extra information
         * @param context
         */
        @Override
        public void extra(CellExtra extra, AnalysisContext context) {
        }

        @Override
        public void doAfterAllAnalysed(AnalysisContext context) {
            saveData();
        }

        /**
         * Verify that there is another piece of data.You can stop the read by returning false
         *
         * @param context
         * @return
         */
        @Override
        public boolean hasNext(AnalysisContext context) {
            return false;
        }

        /**
         * 加上存储数据库
         */
        private void saveData() {
            log.info("{}条数据,开始存储数据库!", cachedDataList.size());
            log.info("存储数据库成功!");
        }
    }).sheet().doRead();
    // 有个很重要的点 DemoDataListener 不能被spring管理,要每次读取excel都要new,然后里面用到spring可以构造方法传进去
    // 写法3:
    fileName = "/home" + "demo" + File.separator + "demo.xlsx";
    // 这里 需要指定读用哪个class去读,然后读取第一个sheet 文件流会自动关闭
    EasyExcel.read(fileName, DemoData.class, new DemoDataListener()).sheet().doRead();
    // 写法4:
    fileName = "/home" + "demo" + File.separator + "demo.xlsx";
    // 一个文件一个reader
    ExcelReader excelReader = null;
    try {
        excelReader = EasyExcel.read(fileName, DemoData.class, new DemoDataListener()).build();
        // 构建一个sheet 这里可以指定名字或者no
        ReadSheet readSheet = EasyExcel.readSheet(0).build();
        // 读取一个sheet
        excelReader.read(readSheet);
    } finally {
        if (excelReader != null) {
            // 这里千万别忘记关闭,读的时候会创建临时文件,到时磁盘会崩的
            excelReader.finish();
        }
    }
}
Also used : ArrayList(java.util.ArrayList) AnalysisContext(com.alibaba.excel.context.AnalysisContext) ReadSheet(com.alibaba.excel.read.metadata.ReadSheet) CellData(com.alibaba.excel.metadata.CellData) ExcelReader(com.alibaba.excel.ExcelReader) CellExtra(com.alibaba.excel.metadata.CellExtra) Test(org.junit.Test)

Aggregations

CellData (com.alibaba.excel.metadata.CellData)3 DictDataRespDTO (cn.iocoder.yudao.framework.dict.core.dto.DictDataRespDTO)1 ExcelReader (com.alibaba.excel.ExcelReader)1 AnalysisContext (com.alibaba.excel.context.AnalysisContext)1 CellDataTypeEnum (com.alibaba.excel.enums.CellDataTypeEnum)1 CellExtra (com.alibaba.excel.metadata.CellExtra)1 ReadSheet (com.alibaba.excel.read.metadata.ReadSheet)1 ArrayList (java.util.ArrayList)1 Test (org.junit.Test)1