吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 243|回复: 3
收起左侧

[下载转存] 谁有CSDN会员,求个文件!谢谢!!

[复制链接]
lyl_lyl 发表于 2024-10-11 17:00
60吾爱币
https://blog.csdn.net/niwotalym/article/details/81949536?spm=1001.2014.3001.5502

最佳答案

查看完整内容

最近在写一个导出Word的模块,用到POI,但是下载最新的POI,找网上的代码插入图片的时候: String blipId = getAllPictures().get(id).getPackageRelationship().getId();\*\* 这一句代码出现了奇怪的错误。 查阅javadoc,发现getPackageRelationship()这个方法居然已经被移除了。 用旧的POI感觉实在是不爽,我就仔细再研究官方代码,发现现在POI导入Word图片已经有全新的方法了。在此我记录下来。 * * * > ...

免费评分

参与人数 1吾爱币 +1 热心值 +1 收起 理由
YKS974119887 + 1 + 1 谢谢@Thanks!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

YKS974119887 发表于 2024-10-11 17:00


最近在写一个导出Word的模块,用到POI,但是下载最新的POI,找网上的代码插入图片的时候:  
String blipId = getAllPictures().get(id).getPackageRelationship().getId();\*\*  
这一句代码出现了奇怪的错误。  
查阅javadoc,发现getPackageRelationship()这个方法居然已经被移除了。  
用旧的POI感觉实在是不爽,我就仔细再研究官方代码,发现现在POI导入Word图片已经有全新的方法了。在此我记录下来。

* * *

> /\*\*  
> \* Demonstrates how to add pictures in a .docx document  
> \*/

官方相当高冷就这么一句介绍

#### 上代码:

```java
public class SimpleImages {

    public static void main(String[] args) throws IOException, InvalidFormatException {
        XWPFDocument doc = new XWPFDocument();
        XWPFParagraph p = doc.createParagraph();

        XWPFRun r = p.createRun();

        for(String imgFile : args) {
            int format;

            if(imgFile.endsWith(".emf")) format = XWPFDocument.PICTURE_TYPE_EMF;
            else if(imgFile.endsWith(".wmf")) format = XWPFDocument.PICTURE_TYPE_WMF;
            else if(imgFile.endsWith(".pict")) format = XWPFDocument.PICTURE_TYPE_PICT;
            else if(imgFile.endsWith(".jpeg") || imgFile.endsWith(".jpg")) format = XWPFDocument.PICTURE_TYPE_JPEG;
            else if(imgFile.endsWith(".png")) format = XWPFDocument.PICTURE_TYPE_PNG;
            else if(imgFile.endsWith(".dib")) format = XWPFDocument.PICTURE_TYPE_DIB;
            else if(imgFile.endsWith(".gif")) format = XWPFDocument.PICTURE_TYPE_GIF;
            else if(imgFile.endsWith(".tiff")) format = XWPFDocument.PICTURE_TYPE_TIFF;
            else if(imgFile.endsWith(".eps")) format = XWPFDocument.PICTURE_TYPE_EPS;
            else if(imgFile.endsWith(".bmp")) format = XWPFDocument.PICTURE_TYPE_BMP;
            else if(imgFile.endsWith(".wpg")) format = XWPFDocument.PICTURE_TYPE_WPG;
            else {
                System.err.println("Unsupported picture: " + imgFile +
                        ". Expected emf|wmf|pict|jpeg|png|dib|gif|tiff|eps|bmp|wpg");
                continue;
            }

            r.setText(imgFile);
            r.addBreak();
            r.addPicture(new FileInputStream(imgFile), format, imgFile, Units.toEMU(200), Units.toEMU(200)); // 200x200 pixels
            r.addBreak(BreakType.PAGE);
        }

        FileOutputStream out = new FileOutputStream("images.docx");
        doc.write(out);
        out.close();
        doc.close();
    }


}
```

其中,imgFile就是图片的路径,直接传入一个能访问的图片地址就行了。整个图片写入过程非常轻松。果然还是新版的好。



文章知识点与官方知识档案匹配,可进一步学习相关知识

[Java技能树](https://edu.csdn.net/skill/java/?utm_source=csdn_ai_skill_tree_blog)[首页](https://edu.csdn.net/skill/java/?utm_source=csdn_ai_skill_tree_blog)[概览](https://edu.csdn.net/skill/java/?utm_source=csdn_ai_skill_tree_blog)152046 人正在系统学习中

本文转自 <https://blog.csdn.net/niwotalym/article/details/81949536?spm=1001.2014.3001.5502%20%E6%88%91%E6%9D%A5%E5%9B%9E%E7%AD%94>,如有侵权,请联系删除。
grekevin 发表于 2024-10-11 17:48
magine1995 发表于 2024-10-11 18:36
https://www.sou.com/search/6b986acf0a824ad99f94db81c7f0fe70?fr=360se_addr&src=360se_addr
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-12-13 08:42

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表