POI方式替换Word中的文字

开发当中,很多时候我们会需要将我们的数据写入到Word当中,或者说导出。这时候我们会使用一些特定的标识来达到我们替换内容的目的。在Word中定义好我们需要替换的内容,也就是模板。然后再写入数据。源码如下:

package com.seawater.controller;

import org.apache.poi.POIXMLDocument;
import org.apache.poi.xwpf.usermodel.*;

import java.io.FileOutputStream;
import java.util.*;
import java.util.Map.Entry;
/**
 * Created by zhouhs on 2017/1/5.
 */
public class DocWriter {

    public static void searchAndReplace(String srcPath, String destPath,Map<String, String> map) {
        try {
            XWPFDocument document = new XWPFDocument(POIXMLDocument.openPackage(srcPath));
            /**
             * 替换段落中的指定文字
             */
            Iterator<XWPFParagraph> itPara = document.getParagraphsIterator();
            while (itPara.hasNext()) {
                XWPFParagraph paragraph = (XWPFParagraph) itPara.next();
                Set<String> set = map.keySet();
                Iterator<String> iterator = set.iterator();
                while (iterator.hasNext()) {
                    String key = iterator.next();
                    List<XWPFRun> run=paragraph.getRuns();
                    for(int i=0;i<run.size();i++)
                    {
                        if(run.get(i).getText(run.get(i).getTextPosition())!=null &&
                                run.get(i).getText(run.get(i).getTextPosition()).equals(key))
                        {
                            /**
                             * 参数0表示生成的文字是要从哪一个地方开始放置,设置文字从位置0开始
                             * 就可以把原来的文字全部替换掉了
                             */
                            run.get(i).setText(map.get(key),0);
                        }
                    }
                }
            }

            /**
             * 替换表格中的指定文字
             */
            Iterator<XWPFTable> itTable = document.getTablesIterator();
            while (itTable.hasNext()) {
                XWPFTable table = (XWPFTable) itTable.next();
                int count = table.getNumberOfRows();
                for (int i = 0; i < count; i++) {
                    XWPFTableRow row = table.getRow(i);
                    List<XWPFTableCell> cells = row.getTableCells();
                    for (XWPFTableCell cell : cells) {
                        for (Entry<String, String> e : map.entrySet()) {
                            if (cell.getText().equals(e.getKey())) {
                                cell.removeParagraph(0);
                                cell.setText(e.getValue());
                            }
                        }
                    }
                }
            }
            FileOutputStream outStream = null;
            outStream = new FileOutputStream(destPath);
            document.write(outStream);
            outStream.close();
        } catch (Exception e) {
            e.printStackTrace();
        }

    }

    public static void main(String[] args) throws Exception {
        Map<String, String> map = new HashMap<String, String>();
        map.put("${title}", "POI word export");
        map.put("${second}", "2");
        map.put("${name}", "seawater");
        map.put("${tel}", "0000-0000");
        map.put("${remark}", "remark info");
        String srcPath = "D:\\1.docx";
        String destPath = "D:\\2.doc";
        searchAndReplace(srcPath, destPath, map);
    }
}
1.docx文件中的内容:

1-1

2.doc文件结果:

1-2

需要注意的是在模板文件中(即1.docx)中我们定义的标识左右都需要加空格,否则可能会出现无法替换的情况。

  • 0
    点赞
  • 21
    收藏
    觉得还不错? 一键收藏
  • 8
    评论
要在Java使用POI库生成Word文档的超链接,你可以按照以下步骤进行操作: 1. 导入所需的POI库依赖。确保你的项目包含了POIPOI-OOXML的相关依赖。 2. 创建一个XWPFDocument对象,用于表示Word文档。 ```java XWPFDocument document = new XWPFDocument(); ``` 3. 创建一个XWPFParagraph对象,用于表示文档的段落。 ```java XWPFParagraph paragraph = document.createParagraph(); ``` 4. 创建一个XWPFRun对象,用于表示段落的文本。 ```java XWPFRun run = paragraph.createRun(); ``` 5. 使用XWPFRun对象的setText方法设置文本内容。 ```java run.setText("点击这里"); ``` 6. 使用XWPFRun对象的addBreak方法插入一个换行符。 ```java run.addBreak(); ``` 7. 使用XWPFRun对象的addHyperlink方法添加超链接。 ```java String url = "https://www.example.com"; run.addHyperlink(url, "链接文本"); ``` 注意:POI库需要在文本使用Unicode码来表示链接文本,所以确保你的文本是基于Unicode编码的。 8. 保存生成的Word文档。 ```java FileOutputStream out = new FileOutputStream("output.docx"); document.write(out); out.close(); ``` 完整的示例代码如下: ```java import org.apache.poi.xwpf.usermodel.*; import java.io.FileOutputStream; import java.io.IOException; public class WordHyperlinkExample { public static void main(String[] args) throws IOException { XWPFDocument document = new XWPFDocument(); XWPFParagraph paragraph = document.createParagraph(); XWPFRun run = paragraph.createRun(); run.setText("点击这里"); run.addBreak(); String url = "https://www.example.com"; run.addHyperlink(url, "链接文本"); FileOutputStream out = new FileOutputStream("output.docx"); document.write(out); out.close(); } } ``` 运行代码后,你将在项目根目录下生成一个名为output.docx的Word文档,其包含了一个超链接。你可以将URL和链接文本替换为你所需的内容。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值