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


    解析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;
  • 相关阅读:
    ajax封装
    完美运动框架
    表单上传input=file
    面向对象入门
    浅谈javaScript内存
    关于使用iframe的父子页面进行简单的相互传值
    浅谈原生JavaScript的动画和特效
    rem 原理与简介
    移动 web 适配
    jsonp 简单封装
  • 原文地址:https://www.cnblogs.com/shouyaya/p/12099714.html
Copyright © 2020-2023  润新知