try {
            // 获取PPT文件
             String pptModelPath =ConfigReadUtil.getInstance().getConfigItem("ppt_path");  //获取路径
            FileInputStream is = new FileInputStream(pptModelPath+"2.pptx");  //读pptx存放的路径

XMLSlideShow ppt = new XMLSlideShow(is);

is.close();

for (XSLFSlide slide : ppt.getSlides()) {
                // 获取每一张幻灯片中的shape
                for (XSLFShape shape : slide.getShapes()) {
                    Rectangle2D anchor = shape.getAnchor();
                    if (shape instanceof XSLFTextShape) {
                        XSLFTextShape txShape = (XSLFTextShape) shape;
                        if (txShape.getText().contains("{time}")) {
                            // 替换文字内容
                            txShape.setText(txShape.getText().replace(
                                    "{time}", time1));
                        }else if (txShape.getText().contains("{eight}")) {
                            // 替换文字内容
                            txShape.setText(txShape.getText().replace(
                                    "{eight}", finalTime));
                        }else if (txShape.getText().contains("{pic}")) {  //替换图片
                             byte[] pictureData = IOUtils.toByteArray(new FileInputStream("C:\\Users\\gls\\Desktop\\1.jpg"));
                             int idx = ppt.addPicture(pictureData,XSLFPictureData.PICTURE_TYPE_PNG);
                            XSLFPictureShape pic = slide.createPicture(idx);
                             // 设置XSLFPictureShape的位置信息
                             pic.setAnchor(anchor);
                             // 移除XSLFTextShape
                             slide.removeShape(txShape);
                        }
                        else if (txShape.getText().contains("{today}")) {
                            // 替换文字内容
                            txShape.setText(txShape.getText().replace(
                                    "{today}", firstTime));
                        } else if (txShape.getText().contains("{tomorrow}")) {
                            // 替换文字内容
                            txShape.setText(txShape.getText().replace(
                                    "{tomorrow}", secondTime));
                        }else if (txShape.getText().contains("{the day after tomorrow}")) {
                            // 替换文字内容
                            txShape.setText(txShape.getText().replace(
                                    "{the day after tomorrow}", thirdTime));
                        }
                        else if (txShape.getText().contains("{dwfirstRain}")) {
                            // 替换文字内容
                            txShape.setText(txShape.getText().replace(
                                    "{dwfirstRain}", dwfirstRain));
                        } else if (txShape.getText().contains("{psfirstRain}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{psfirstRain}", psfirstRain));
                        } else if (txShape.getText().contains("{dwsecondRain}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{dwsecondRain}",dwsecondRain));
                        } else if (txShape.getText().contains("{pssecondRain}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{pssecondRain}", pssecondRain));
                        } else if (txShape.getText().contains("{dwthirdRain}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{dwthirdRain}",dwthirdRain));
                        } else if (txShape.getText().contains("{psthirdRain}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{psthirdRain}",psthirdRain));
                        } else if (txShape.getText().contains("{dwFirstphenomena}")) {
                            txShape.setText(txShape.getText().replace("{dwFirstphenomena}",
                                    dwFirstphenomena));
                        } else if (txShape.getText().contains("{psFirstphenomena}")) {
                            txShape.setText(txShape.getText().replace("{psFirstphenomena}",
                                    psFirstphenomena));
                        } else if (txShape.getText().contains("{dwSecondphenomena}")) {
                            txShape.setText(txShape.getText().replace("{dwSecondphenomena}",
                                    dwSecondphenomena));
                        } else if (txShape.getText().contains("{psSecondphenomena}")) {
                            txShape.setText(txShape.getText().replace("{psSecondphenomena}",
                                    psSecondphenomena));
                        } else if (txShape.getText().contains("{dwThirdphenomena}")) {
                            txShape.setText(txShape.getText().replace("{dwThirdphenomena}",
                                    dwThirdphenomena));
                        } else if (txShape.getText().contains("{psThirdphenomena}")) {
                            txShape.setText(txShape.getText().replace("{psThirdphenomena}",
                                    psThirdphenomena));
                        } else if (txShape.getText().contains("{dwfirstMaxTemp}")) {
                            txShape.setText(txShape.getText().replace("{dwfirstMaxTemp}",
                                    dwfirstMaxTemp));
                        } else if (txShape.getText().contains("{psfirstMaxTemp}")) {
                            txShape.setText(txShape.getText().replace("{psfirstMaxTemp}",
                                    psfirstMaxTemp));
                        } else if (txShape.getText().contains("{dwsecondMaxTemp}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{dwsecondMaxTemp}", dwsecondMaxTemp));
                        }else if (txShape.getText().contains("{pssecondMaxTemp}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{pssecondMaxTemp}", pssecondMaxTemp));
                        }else if (txShape.getText().contains("{dwthirdMaxTemp}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{dwthirdMaxTemp}", dwthirdMaxTemp));
                        }else if (txShape.getText().contains("{psthirdMaxTemp}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{psthirdMaxTemp}", psthirdMaxTemp));
                        }else if (txShape.getText().contains("{dwfirstMinTemp}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{dwfirstMinTemp}", dwfirstMinTemp));
                        }else if (txShape.getText().contains("{psfirstMinTemp}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{psfirstMinTemp}", psfirstMinTemp));
                        }else if (txShape.getText().contains("{dwsecondtMinTemp}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{dwsecondtMinTemp}", dwsecondtMinTemp));
                        }else if (txShape.getText().contains("{pssecondMinTemp}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{pssecondMinTemp}", pssecondMinTemp));
                        }else if (txShape.getText().contains("{dwthirdMinTemp}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{dwthirdMinTemp}", dwthirdMinTemp));
                        }else if (txShape.getText().contains("{psthirdMinTemp}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{psthirdMinTemp}", psthirdMinTemp));
                        }else if (txShape.getText().contains("{dwWindDAndV}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{dwWindDAndV}", dwWindDAndV));
                        }else if (txShape.getText().contains("{psWindDAndV}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{psWindDAndV}", psWindDAndV));
                        }else if (txShape.getText().contains("{dwSeaWindDAndV}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{dwSeaWindDAndV}", dwSeaWindDAndV));
                        }else if (txShape.getText().contains("{psSeaWindDAndV}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{psSeaWindDAndV}", psSeaWindDAndV));
                        }else if (txShape.getText().contains("{zyPSMaxTemp}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{zyPSMaxTemp}", zyPSMaxTemp));
                        }else if (txShape.getText().contains("{zyPSMinTemp}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{zyPSMinTemp}", zyPSMinTemp));
                        }else if (txShape.getText().contains("{zyPSPhoenomena}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{zyPSPhoenomena}", zyPSPhoenomena));
                        }else if (txShape.getText().contains("{zyPSWindD}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{zyPSWindD}", zyPSWindD));
                        }else if (txShape.getText().contains("{zyPSWindV}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{zyPSWindV}", zyPSWindV));
                        }else if (txShape.getText().contains("{zyDWMaxTemp}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{zyDWMaxTemp}", zyDWMaxTemp));
                        }else if (txShape.getText().contains("{zyDWMinTemp}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{zyDWMinTemp}", zyDWMinTemp));
                        }else if (txShape.getText().contains("{zyDWPhoenomena}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{zyDWPhoenomena}", zyDWPhoenomena));
                        }else if (txShape.getText().contains("{zyDWWindD}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{zyDWWindD}", zyDWWindD));
                        }else if (txShape.getText().contains("{zyDWWindV}")) {
                            txShape.setText(txShape.getText().replace(
                                    "{zyDWWindV}", zyDWWindV));
                        }
                    }  else if (shape instanceof XSLFPictureShape) {
                        XSLFPictureShape pShape = (XSLFPictureShape) shape;
                        XSLFPictureData pData = pShape.getPictureData();
                    } else {
                        System.out.println("Process me: " + shape.getClass());
                    }
                }
            }

Object user = ServletActionContext.getRequest().getSession()
                    .getAttribute(ResourceUtil.getSessionInfoName());
            Date date = new Date();
            SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd kk:mm:ss");
            SimpleDateFormat s = new SimpleDateFormat("yyyy-MM-dd");
            String fileTime = sdf.format(date);
            String time= s.format(date);
             String filePath =ConfigReadUtil.getInstance().getConfigItem("FileSavePath");
        //    String filePath = "D:\\Conference";
            filePath = filePath.replace("\\", "\\\\");

File dir = new File(filePath);
            if(!dir.exists()){
                dir.mkdirs();
            }
            String path = dir.getPath();
            path = path.replace("\\", "\\\\");
            String fileName = "天气会商.pptx";

String fileType = "pptx";
            WeatherConference c = new WeatherConference();
            c.setFileName(time+fileName);
            c.setFileType(fileType);
            c.setFileTime(fileTime);
            c.setFileUploader(user.toString());
            c.setFilePath(path+"\\\\"+time+"天气会商制作"+".pptx");
            conferenceManager.add(c);

FileOutputStream out = new FileOutputStream(path+"\\"+time+"天气会商制作"+".pptx");

ppt.write(out);
            out.close();

用poi替换ppt中的文字和图片的更多相关文章

  1. poi读取docx中的文字和图片(自己应用)

    poi读取docx中的文字和图片(自己应用) package com.fry.poiDemo.dao; import java.io.File; import java.io.FileInputStr ...

  2. poi提取docx中的文字和图片

    package com.fry.poiDemo.dao; import java.io.File; import java.io.FileInputStream; import java.io.Fil ...

  3. 如何提取出ppt中的文字?

    最近在看一位老师的教学视频,视频里大部分的知识都记录在ppt里,于是很想将ppt中的文字提取出来,如果我一页一页地粘贴复制的话,效率低到吓人,因为一章的ppt有130多页,于是在网上搜索了一下方法,与 ...

  4. 使用POI替换word中的特定字符/文字改进版

    package com.xfzx.test.POI.main; import java.io.File; import java.io.FileInputStream; import java.io. ...

  5. C# 使用正则表达式替换PPT中的文本(附vb.net代码)

    文本介绍如何在C#程序中使用正则表达式替换PPT幻灯片中的指定文本内容.具体操作步骤如下: 1. 在程序中引用Spire.Presentation.dll.两种方法可参考如下: (1)直接在程序中通过 ...

  6. Java在已存在的pdf文件中生成文字和图片--基础

    自我总结,有什么不足之处请告知,感激不尽!下一次总结pdf模板映射生成报表(应对多变的pdf报表需求,数据提供和报表生成解耦). 目的:在给定的pdf模板上生成报表,就需要知道最基本的操作:文字添加, ...

  7. 批量导出ppt中内嵌的图片

    某个ppt中很多页,然后插入了很多图片,且图片都是被压缩的,看起来非常费劲,所以想着一次性把图片另存为,找了接近一个小时,终于被我找到啦,分享给大家: 1.直接把ppt的后缀修改为rar 2.解压ra ...

  8. PDFtoWORD_V1.1版本支持PDF文档中的文字和图片一起转化到word文档中了~

    ​    昨天菜鸟小白做了一个小软件——PDFtoWORD,作用就是将pdf文件中的文字提取出来自动转化为可编辑的word类型.但是这个软件目前也只能将文件PDF中的文字提取出来,还无法提取图片.为了 ...

  9. 如何用Python输出PPT中的文字信息

    在这里,会用到win32com模块 模块下载地址:http://sourceforge.net/projects/pywin32/files/pywin32/ 代码如下: import win32co ...

随机推荐

  1. javascript总结3:javaScript的 Math 对象

    Math 对象 Math 对象用于执行数学任务. Math 对象并不像 Date 和 String 那样是对象的类,因此没有构造函数 Math(). Math 常用的方法 var n1=1234; v ...

  2. HDU 4111 Alice and Bob (博弈+记忆化搜索)

    题意:给定 n 堆石头,然后有两种操作,一种是把从任意一堆拿走一个,另一种是把一个石子放到另一堆上. 析:整体看,这个题真是不好做,dp[a][b] 表示有 a 堆1个石子,b个操作,操作是指把其他的 ...

  3. mysql索引及多表查询

    注意where,group by ,having,order by, limit 等的顺序. 主表是被绑定的表,子表是添加了外键了的表,注意,在创建表的时候可以添加外键,也可以创建完了以后添加外键. ...

  4. javascript鼠标双击时触发事件大全

    javascript事件列表解说 事件 浏览器支持 解说 一般事件 onclick IE3.N2 鼠标点击时触发此事件 ondblclick IE4.N4 鼠标双击时触发此事件 onmousedown ...

  5. logback-记录日志

      一:根节点<configuration>包含的属性: scan: 当此属性设置为true时,配置文件如果发生改变,将会被重新加载,默认值为true. scanPeriod: 设置监测配 ...

  6. day01.2-python基础

    一. python基本数据类型及操作     1. 数字.在python中,数字的初始化方式为直接赋值.如:a = 11 a). 加法运算                              b ...

  7. Ubuntu16.04LTS安装集成开发工具IDE: CodeBlocks 和Eclipse-cdt

    上文中,我们已经介绍了QT5.10.0在Ubuntu下的安装 https://www.cnblogs.com/si-lei/p/9240230.html, 接下来我们介绍CodeBlocks以及Ecl ...

  8. get与post中文乱码问题

    Jsp默认的字符编码格式是iso-8859-1 因为post方法与get方法传递参数的方式不一样,所以有不同的解决方法. 一.post乱码解决方法: 1.设置请求和响应的编码方式 //设置请求的编码格 ...

  9. 封装的一个sorted_vector示例,实现了stl::set的一部分接口

           STL set能保证最坏情况下的查找和插入效率,logN.但是维护红黑树开销较大.set内的元素按照一定的逻辑顺序组织,查找.插入等操作的结果都和排序规则有关.       适合STL ...

  10. postgreSQL PL/SQL编程学习笔记(一)

    1.Structure of PL/pgSQL The structure of PL/pgSQL is like below: [ <<label>> ] [ DECLARE ...