POI导出图片到excel

博客介绍了如何在导出Excel时将网络上的图片插入到文件中,解决无法直接读取远程图片的问题,参考了网上的解决方案,最终实现了预期效果。
摘要由CSDN通过智能技术生成

1.需求: 导出图片到excel中

2. 问题:图片是存在图片服务器上,不能直接像读取本地图片那样读取图片

3.  解决方案参考网上

 //  插入图片
        String shopPic = storeFindVo.getShopPic();
        int num = 0;
        if (shopPic != null){
            //获取服务器地址
            String filePath = SystemConstants.getPtdImageUrl();
            String[] picList = shopPic.split(",");
            for (int i=0;i<picList.length;i++){
                try {
                    byte[] data = {};
                    URL url = new URL(filePath + picList[i]);
                    //打开连接
                    HttpURLConnection conn = (HttpURLConnection)url.openConnection();
                    //设置请求方式为"GET"
                    conn.setRequestMethod("GET");
                    //超时响应时间为5秒
                    conn.setConnectTimeout(5 * 1000);
                    //通过输入流获取图片数据
                    InputStream
作为AI语言模型,我无法进行POI库的开发和使用,但是我可以提供Java代码的参考: 1. 导出图片Excel ```java // 创建Excel文档 Workbook workbook = new XSSFWorkbook(); // 创建工作表 Sheet sheet = workbook.createSheet("图片示例"); // 加载图片 InputStream inputStream = new FileInputStream("image.jpg"); byte[] bytes = IOUtils.toByteArray(inputStream); int pictureIdx = workbook.addPicture(bytes, Workbook.PICTURE_TYPE_JPEG); // 插入图片 CreationHelper helper = workbook.getCreationHelper(); Drawing drawing = sheet.createDrawingPatriarch(); ClientAnchor anchor = helper.createClientAnchor(); anchor.setCol1(0); anchor.setRow1(0); Picture picture = drawing.createPicture(anchor, pictureIdx); // 输出Excel文件 FileOutputStream fos = new FileOutputStream("excel.xlsx"); workbook.write(fos); ``` 2. 压缩图片 ```java // 加载图片 InputStream inputStream = new FileInputStream("image.jpg"); byte[] bytes = IOUtils.toByteArray(inputStream); // 压缩图片 BufferedImage bufferedImage = ImageIO.read(new ByteArrayInputStream(bytes)); int width = bufferedImage.getWidth(); int height = bufferedImage.getHeight(); double scale = 0.5; width *= scale; height *= scale; BufferedImage compressedImage = new BufferedImage(width, height, bufferedImage.getType()); Graphics2D g = compressedImage.createGraphics(); g.drawImage(bufferedImage, 0, 0, width, height, null); g.dispose(); // 输出压缩后的图片 ByteArrayOutputStream baos = new ByteArrayOutputStream(); ImageIO.write(compressedImage, "jpg", baos); byte[] compressedBytes = baos.toByteArray(); FileOutputStream fos = new FileOutputStream("compressed.jpg"); fos.write(compressedBytes); ``` 你可以将以上代码结合起来,先将图片压缩,再将压缩后的图片插入Excel中。
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值