Java 根据模板文件生成新的PPT

x33g5p2x  于2022-02-22 转载在 Java  
字(6.4k)|赞(0)|评价(0)|浏览(652)

项目需求

模板文件如下:

实现过程:

1.引入第三方依赖

2.编写业务代码

3.根据模板生成新的PPT

项目需求

最近项目中有一个需求就是让Java代码去代替人工操作,自动生成PPT,具体就是查询数据库数据,然后根据模板文件(PPT),将数据库数据与模板文件(PPT),进行组合一下。生成新的PPT文件。

模板文件如下:

将模板文件中的姓名,进步率,连续进步次数图片。替换为具体的人员信息

实现过程:

1.引入第三方依赖

  1. <dependency>
  2. <groupId>org.apache.poi</groupId>
  3. <artifactId>poi-ooxml</artifactId>
  4. <version>3.15</version>
  5. </dependency>

Apache POI   是用Java编写的免费开源的跨平台的 Java API,Apache POI提供API给Java程式对Microsoft Office格式档案读和写的功能。POI为“Poor Obfuscation Implementation”的首字母缩写,意为“简洁版的模糊实现”。

  1. HSSF-提供读写MicrosoftExcelXLS格式档案的功能
  2. XSSF-提供读写MicrosoftExcelOOXMLXLSX格式档案的功能
  3. HWPF-提供读写MicrosoftWordDOC格式档案的功能
  4. HSLF-提供读写MicrosoftPowerPoint格式档案的功能
  5. HDGF-提供读MicrosoftVisio格式档案的功能
  6. HPBF-提供读MicrosoftPublisher格式档案的功能
  7. HSMF-提供读MicrosoftOutlook格式档案的功能

2.编写业务代码

  1. import org.apache.poi.sl.usermodel.Shape;
  2. import org.apache.poi.sl.usermodel.Slide;
  3. import org.apache.poi.xslf.usermodel.XMLSlideShow;
  4. import java.io.*;
  5. import java.util.List;
  6. /**
  7. * 读取模板PPT生成新的PPT文件
  8. *
  9. * @author Promsing(张有博)
  10. * @version 1.0.0
  11. * @since 2022/2/11 - 15:37
  12. */
  13. public class RenderPowerPointTemplate extends BasePowerPointFileUtil {
  14. /**
  15. * 读取PPT模板
  16. * @param powerPoint
  17. * @param
  18. * @throws IOException
  19. */
  20. public static void renderPowerPointTemplateOfCertificate(InputStream powerPoint, List<WeekAnalyseModel> lists, String rankType) throws IOException {
  21. //List<WeekAnalyseModel>是我们项目自己定义的model,可改成其他业务的model
  22. if(powerPoint == null) {
  23. return;
  24. }
  25. //创建一个幻灯片
  26. XMLSlideShow slideShow = new XMLSlideShow(powerPoint);
  27. //从幻灯片中获取每个页
  28. List slides = slideShow.getSlides();
  29. //遍历每一页PPT
  30. for (int i = 0 ; i < slides.size() ; i++) {
  31. //幻灯片布局,文本框,矩形框之类的,遍历一页PPT中的所有控件
  32. List shapes = ((Slide)slides.get(i)).getShapes();
  33. for (int j = 0 ; j < shapes.size() ; j++) {
  34. Shape shape = (Shape) shapes.get(j);
  35. RenderPowerPointTemplate.renderShapeAndPicture(shape, lists.get(i),rankType);
  36. }
  37. }
  38. //新PPT的位置,file就是新的PPT文件
  39. File file=new File(rankType+"test.pptx");
  40. OutputStream outputStreams = new FileOutputStream(file);
  41. slideShow.write(outputStreams);
  42. // FileUpLoadUtil.T_THREAD_LOCAL.set(file.getAbsolutePath());
  43. System.out.println("新文件的路径:"+file.getAbsolutePath());
  44. }
  45. }
  1. import com.tfjybj.integral.constant.CommonConstant;
  2. import com.tfjybj.integral.model.WeekAnalyseModel;
  3. import com.tfjybj.integral.utils.SimplifiedDate;
  4. import org.apache.commons.io.FileUtils;
  5. import org.apache.poi.sl.usermodel.Shape;
  6. import org.apache.poi.sl.usermodel.*;
  7. import org.apache.poi.xslf.usermodel.XSLFTextRun;
  8. import org.apache.poi.xslf.usermodel.XSLFTextShape;
  9. import java.awt.*;
  10. import java.io.*;
  11. import java.net.URL;
  12. import java.util.ArrayList;
  13. import java.util.Iterator;
  14. import java.util.List;
  15. /**
  16. * <p>PowerPoint文件工具基类
  17. * <p>
  18. * <p>通用的PowerPoint文件工具基类,可用于从PowerPoint文档中抽取文本信息
  19. */
  20. public class BasePowerPointFileUtil {
  21. /**
  22. * 渲染、绘制文本框
  23. *
  24. * @param shape
  25. * @param data
  26. */
  27. public static void renderShapeAndPicture(Shape shape, WeekAnalyseModel data,String rankType) {
  28. //判断是否是文本框
  29. if (shape instanceof TextShape) {
  30. BasePowerPointFileUtil.replace(shape, data,rankType);
  31. } else if (shape instanceof GroupShape) {
  32. Iterator groupShapes = ((GroupShape) shape).iterator();
  33. while (groupShapes.hasNext()) {
  34. Shape groupShape = (Shape) groupShapes.next();
  35. BasePowerPointFileUtil.renderShapeAndPicture(groupShape, data,rankType);
  36. }
  37. } else if (shape instanceof TableShape) {
  38. TableShape tableShape = ((TableShape) shape);
  39. int column = tableShape.getNumberOfColumns();
  40. int row = tableShape.getNumberOfRows();
  41. for (int r = 0; r < row; r++) {
  42. for (int c = 0; c < column; c++) {
  43. BasePowerPointFileUtil.replace(tableShape.getCell(r, c), data,rankType);
  44. }
  45. }
  46. } else if (shape instanceof PictureShape) {
  47. //判断是否是图片框
  48. PictureShape pictureShape = (PictureShape) shape;
  49. PictureData pictureData = pictureShape.getPictureData();
  50. byte[] bytes = BufferStreamForByte(URLToFile(data.getPictureURL()), 1024);
  51. try {
  52. pictureData.setData(bytes);
  53. } catch (IOException e) {
  54. e.printStackTrace();
  55. }
  56. }
  57. }
  58. /**
  59. * 替换模板PPT中的值
  60. *
  61. * @param shape
  62. * @param weekAnalyseModel
  63. */
  64. public static void replace(Shape shape, WeekAnalyseModel weekAnalyseModel,String rankType) {
  65. //List<WeekAnalyseModel>是我们项目自己定义的model,可改成其他业务的model
  66. if (shape instanceof TextShape) {
  67. String replaceText = ((XSLFTextShape) shape).getText();
  68. XSLFTextRun xslfTextRun = null;
  69. //替换数据的业务逻辑,待优化
  70. switch (replaceText) {
  71. case "姓名:闪耀姓名1":
  72. xslfTextRun = ((XSLFTextShape) shape).setText("姓名:" + weekAnalyseModel.getUserName());
  73. break;
  74. case "积分:闪耀分数1":
  75. xslfTextRun = ((XSLFTextShape) shape).setText("积分:" + weekAnalyseModel.getWeekData());
  76. break;
  77. case "闪耀1连击ヾ":
  78. xslfTextRun = ((XSLFTextShape) shape).setText("闪耀" + weekAnalyseModel.getListNumber() + "连击ヾ");
  79. break;
  80. case "姓名:闪耀姓名2":
  81. xslfTextRun = ((XSLFTextShape) shape).setText("姓名:" + weekAnalyseModel.getUserName());
  82. break;
  83. case "积分:闪耀分数2":
  84. xslfTextRun = ((XSLFTextShape) shape).setText("积分:" + weekAnalyseModel.getWeekData());
  85. break;
  86. case "闪耀2连击ヾ":
  87. xslfTextRun = ((XSLFTextShape) shape).setText("闪耀" + weekAnalyseModel.getListNumber() + "连击ヾ");
  88. break;
  89. }
  90. //空值过滤,设置样式
  91. if (xslfTextRun != null) {
  92. if (rankType.equals("闪耀之星")||rankType.equals("进步之星")){
  93. setTextStyle(xslfTextRun);
  94. }else if (rankType.equals("闪耀之星荣誉证书")||rankType.equals("进步之星荣誉证书")){
  95. setTextStyleCertificate(xslfTextRun);
  96. }
  97. }
  98. }
  99. }
  100. /**
  101. * 设置字体样式
  102. *
  103. * @param xslfTextRun
  104. */
  105. private static void setTextStyle(XSLFTextRun xslfTextRun) {
  106. xslfTextRun.setFontFamily("等线(正文)");
  107. Color color = new Color(255, 255, 255);
  108. xslfTextRun.setFontColor(color);
  109. xslfTextRun.setFontSize(40.0);
  110. xslfTextRun.setBold(true);
  111. }
  112. /**
  113. * 设置证书字体样式
  114. *
  115. * @param xslfTextRun
  116. */
  117. private static void setTextStyleCertificate(XSLFTextRun xslfTextRun) {
  118. xslfTextRun.setFontFamily("宋体");
  119. Color color = new Color(0, 0, 0);
  120. xslfTextRun.setFontColor(color);
  121. xslfTextRun.setFontSize(32.0);
  122. xslfTextRun.setBold(true);
  123. }
  124. /**
  125. * 将文件转为字节数组
  126. * @param file
  127. * @param size
  128. * @return
  129. */
  130. public static byte[] BufferStreamForByte(File file, int size) {
  131. byte[] content = null;
  132. try {
  133. BufferedInputStream bis = null;
  134. ByteArrayOutputStream out = null;
  135. try {
  136. FileInputStream input = new FileInputStream(file);
  137. bis = new BufferedInputStream(input, size);
  138. byte[] bytes = new byte[1024];
  139. int len;
  140. out = new ByteArrayOutputStream();
  141. while ((len = bis.read(bytes)) > 0) {
  142. out.write(bytes, 0, len);
  143. }
  144. bis.close();
  145. content = out.toByteArray();
  146. } finally {
  147. if (bis != null) {
  148. bis.close();
  149. }
  150. if (out != null) {
  151. out.close();
  152. }
  153. }
  154. } catch (IOException e) {
  155. // TODO Auto-generated catch block
  156. e.printStackTrace();
  157. }
  158. return content;
  159. }
  160. /**
  161. * 读取网络中的图片
  162. * @param url https://www.kziyue.com/wp-content/uploads/2019/06/5bca-hxyuaph9825616.jpg
  163. * @return
  164. */
  165. public static File URLToFile(String url){
  166. File file1 = new File("test.mp4");
  167. try {
  168. URL url1 = new URL(url);
  169. FileUtils.copyURLToFile(url1,file1);
  170. } catch (IOException e) {
  171. e.printStackTrace();
  172. }
  173. File absoluteFile = file1.getAbsoluteFile();
  174. return file1;
  175. }
  176. }

3.根据模板生成新的PPT

如果本篇博客对您有一定的帮助,大家记得留言+点赞+收藏哦。 

相关文章

最新文章

更多