首页 > 其他 > 详细

通过poi解析word(替换word中的部分内容)

时间:2019-12-26 02:23:03      阅读:180      评论:0      收藏:0      [点我收藏+]

解析03版(.doc)word:

HWPFDocument doc=null;              //HWPFDocument 对应03版word
        try {
             doc =new HWPFDocument(new FileInputStream("F:\\upload\\template_03.doc"));    //获得要替换的word模板
             Range range = doc.getRange();                             //range获取word中的内容
            for (Map.Entry<String,String> entry:replaceContent.entrySet()){          //通过一个Map来替换内容 Map中key值存被替换的内容  Map中value值存要替换的内容,最后通过一个循环实现
                range.replaceText(entry.getKey(),entry.getValue());
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
        return doc;

解析07(.docx) word:

XWPFDocument docx=null;
        try {
            docx=new XWPFDocument(new FileInputStream("F:\\upload\\template_07.docx"));
            List<XWPFParagraph> paragraphs = docx.getParagraphs();                //07版需先获取段落;最后在获取以格式分割的最小单位run
            for (XWPFParagraph paragraph:paragraphs){
                List<XWPFRun> runs = paragraph.getRuns();
                for (XWPFRun run:runs){
                    String str=run.getText(run.getTextPosition());          //获取run中的字符串
                    for (Map.Entry<String,String> entry:replaceContent.entrySet()){
                        str=str.replace(entry.getKey(),entry.getValue());
                    }
                    run.setText(str,0);
                }
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
        return docx;

通过poi解析word(替换word中的部分内容)

原文:https://www.cnblogs.com/shouyaya/p/12099714.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!