zoukankan      html  css  js  c++  java
  • java替换word2003

                map.put("year", year);
                map.put("yearMonthDay", yearMonthDay);
                map.put("month", month);
                map.put("xun", xun);
                map.put("lastMonth", lastMonth);
                map.put("lastXun", lastXun);
                map.put("dwAvgTemp", dwAvgTemp);
                map.put("dwhistoryTemp", dwhistoryTemp);
                map.put("dwhistoryRain", dwhistoryRain);
                map.put("psAvgTemp", psAvgTemp);
                map.put("pshistoryTemp", pshistoryTemp);
                map.put("pshistoryRain", pshistoryRain);
                map.put("maxTemp", maxTemp);
                map.put("minTemp", minTemp);
                map.put("siteName", siteName);
                map.put("siteName2", siteName2);

    /**
         * 开始替换word数据
         * @param map 要替换的map
         * @throws Exception
         */
        private void Write(Map<String,String> map) throws Exception {
              String templatePath = "D:\中期天气预报.doc";  
              String outPath = "D:\write.doc";
              String fileName = "write.doc";
              try {
                    FileInputStream fis = new FileInputStream(new File(templatePath));
                    HWPFDocument doc = new HWPFDocument(fis);
                    Range bodyRange = doc.getRange();
                    for (Map.Entry<String, String> entry : map.entrySet()) {
                        String key = entry.getKey();
                        String value =  entry.getValue();
                        bodyRange.replaceText("${" + key + "}", value);
                    }
                    ByteArrayOutputStream ostream = new ByteArrayOutputStream();
                    try{
                        doc.write(ostream);
                    }catch(Exception ex){
                        ex.printStackTrace();
                    }
                    OutputStream outs=new FileOutputStream(outPath);
                    outs.write(ostream.toByteArray());
                    outs.close();
                    fis.close();
                } catch (Exception e) {
                    e.printStackTrace();
                }
             
        }

  • 相关阅读:
    关于在MAC上进行 LARAVEL 环境 Homestead 安装过程记录
    js 贷款计算器
    js 实现阶乘
    js 两点间距离函数
    composer Your requirements could not be resolved to an installable set of packages
    vue 项目优化记录 持续更新...
    vue 项目打包
    vue 真机调试页面出现空白
    vue 真机调试
    谈谈-Android状态栏的编辑
  • 原文地址:https://www.cnblogs.com/guolsblog/p/5983589.html
Copyright © 2011-2022 走看看