工具类,包含线程池,excel图片处理

一、线程池

java 复制代码
public class ThreadPool {
 
    /**
     * 核心线程
     */
    public static final int CORE_POOL_SIZE = Runtime.getRuntime().availableProcessors() + 1;
 
    /**
     * 线程池最大线程数
     */
    public static final int MAX_POOL_SIZE = CORE_POOL_SIZE * 2;
 
    /**
     * 空闲线程回收时间
     */
    public static final int KEEP_ALIVE_TIME = 30;
 
    /**
     * 队列最大长度
     */
    public static final int QUEUE_CAPACITY = 128;
 
    private static final ExecutorService executorService =
            new ThreadPoolExecutor(CORE_POOL_SIZE,
                MAX_POOL_SIZE,
                KEEP_ALIVE_TIME,
                TimeUnit.SECONDS,
                new LinkedBlockingQueue<>(QUEUE_CAPACITY),
                Executors.defaultThreadFactory(),
                new ThreadPoolExecutor.CallerRunsPolicy());
 
    private ThreadPool() {
 
    }
 
    public static void execute(Runnable task) {
        executorService.execute(task);
    }
 
    public static void shutdown() {
        if(!executorService.isShutdown()){
            executorService.shutdown();
        }
    }
 
    public static Future submit(Runnable task){
        return executorService.submit(task);
    }
 
    public static boolean cancel(Future future){
        if(future != null && !future.isCancelled()){
            return future.cancel(true);
        }
        return false;
    }
}

二、EasyExcel一列单元格导出多张图片

java 复制代码
/**
     *
     * @param context
     * @param imageDataList 图片列表
     * @param imgColIndex 图片列
     */
    private void setImage(CellWriteHandlerContext context, List<ImageData> imageDataList, int imgColIndex) {
        Sheet sheet = context.getWriteSheetHolder().getSheet();
        Cell cell = context.getCell();
        // 图片数量
        int maxSize = imageDataList.size() > 1 ? imageDataList.size() : 1;
        // 根据图片数量设置图片列的宽度
        sheet.setColumnWidth(imgColIndex, (int)(18 * maxSize + 0.72) * 256);
        // 图片宽度,单位px,自己设置咯
        int picWidth = Units.pixelToEMU(125);
        Drawing drawing = sheet.getDrawingPatriarch();
        if (drawing == null) {
            drawing = sheet.createDrawingPatriarch();
        }
        for (int i = 0; i < imageDataList.size(); i++) {
            int index = sheet.getWorkbook().addPicture(imageDataList.get(i).getImage(), XSSFWorkbook.PICTURE_TYPE_PNG);
            // 设置图片坐标和位置 dx1, dy1, dx2, dy2, col1, row1, col2, row2
            // (dx1, dy1)是起始单元格图片左上角的坐标
            // (dx2, dy2)是结束单元格图片右下角的坐标
            // (col1, row1)是起始单元格位置
            // (col2, row2)是结束单元格位置
            ClientAnchor anchor = drawing.createAnchor(picWidth, 0, picWidth + picWidth * i,
                0,cell.getColumnIndex(), cell.getRowIndex(), cell.getColumnIndex(), cell.getRowIndex() + 1);
            // 设置图片可以随着单元格移动
            anchor.setAnchorType(ClientAnchor.AnchorType.MOVE_AND_RESIZE);
            drawing.createPicture(anchor, index);
        }
    }
相关推荐
神奇夜光杯1 小时前
Python酷库之旅-第三方库Pandas(202)
开发语言·人工智能·python·excel·pandas·标准库及第三方库·学习与成长
小c君tt2 小时前
MFC中Excel的导入以及使用步骤
c++·excel·mfc
一名技术极客4 小时前
Vue2 doc、excel、pdf、ppt、txt、图片以及视频等在线预览
pdf·powerpoint·excel·文件在线预览
用余生去守护4 小时前
【反射率】-- Lab 转换(excel)
excel
进击的六角龙4 小时前
Python中处理Excel的基本概念(如工作簿、工作表等)
开发语言·python·excel
TracyDemo4 小时前
excel功能
excel
lc寒曦4 小时前
【VBA实战】用Excel制作排序算法动画
排序算法·excel·vba
zzzgd8164 小时前
easyexcel实现自定义的策略类, 最后追加错误提示列, 自适应列宽,自动合并重复单元格, 美化表头
java·excel·表格·easyexcel·导入导出
努力学习技能的LY4 小时前
Excel:vba实现批量插入图片批注
excel
图片转成excel表格6 小时前
wps怎么算出一行1和0两种数值中连续数值1的个数,出现0后不再计算?
excel·wps