有个四岁的小鬼问我:哥哥你怎么长得那么丑啊?
我想了想,到他耳边说:你不要告诉别人哦。其实我就是未来的你。
他哭了。。。
大家好,我录制的视频《Java之优雅编程之道》已经在CSDN学院发布了,有兴趣的同学可以购买观看,相信大家一定会收获到很多知识的。谢谢大家的支持……
视频地址:http://edu.csdn.net/lecturer/994
如何实现一个最简单的PPT导出功能????
一步一步地,没打算写太多,感觉写的篇幅过长,大都没什么耐心看下去,所以每次都只解决一个小问题……
下面是对POI的各种文件做一些简单介绍:
Excel 文件: xls 格式文件对应 POI API 为 HSSF 。 xlsx 格式为 office 2007 的文件格式,POI 中对应的API 为XSSF
Word 文件:doc 格式文件对应的 POI API 为 HWPF。 docx 格式为 XWPF
powerPoint 文件:ppt 格式对应的 POI API 为 HSLF。 pptx 格式为 XSLF
outlook :对应的 API 为 HSMF
Visio: 对应的 API 为 HDGF
Publisher : 对应的 API 为 HPBF
下面是来自POI文档里对类的介绍:
HSLFSlideShow:
This class contains the main functionality for the Powerpoint file “reader”.(该类包含PTT读的主要功能)
SlideShow:
This class is a friendly wrapper on top of the more scary HSLFSlideShow. TODO: - figure out how to match notes to their correct sheet (will involve understanding DocSlideList and DocNotesList) - handle Slide creation cleaner
(可以把该类理解为Slide管理类)
Slide
This class represents a slide in a PowerPoint Document. It allows access to the text within, and the layout. For now, it only does the text side of things though(该类代表PPT里的一页幻灯片,Slide英文意思为幻灯片)
TextBox:
Represents a TextFrame shape in PowerPoint.(在PPT里代表一个文本框)
Contains the text in a text frame as well as the properties and methods that control alignment and anchoring of the text.
例一:最简单的PPT生成实例,是针对.ppt格式做介绍,下一章,我们用.pptx做介绍
package com.hwy.test;
import org.apache.poi.hslf.HSLFSlideShow;
import org.apache.poi.hslf.model.Slide;
import org.apache.poi.hslf.model.TextBox;
import org.apache.poi.hslf.usermodel.SlideShow;
import java.awt.*;
import java.io.File;
import java.io.FileOutputStream;
/**
* PPT简单导出
* Created by Ay on 2016/6/14.
*/
public class MyFirstPPTTest {
public static void main(String[] args) throws Exception{
String filePath = "D://MyPPT.ppt";
/** 加载PPT **/
HSLFSlideShow ppt = new HSLFSlideShow(filePath);
/** 创建一个slideShow,可以理解为管理Slide的列表 **/
SlideShow slideShow = new SlideShow(ppt);
/** 可以 理解为PPT里的每一页 **/
Slide slide = slideShow.createSlide();
/** 创建一个文本框 **/
TextBox textBox = new TextBox();
/** 设置文本框的值 **/
textBox.setText("Hello PPT ....");
textBox.setAnchor(new Rectangle(10,10,100,100));
slide.addShape(textBox);
/** 输出文件 **/
slideShow.write(new FileOutputStream(filePath));
}
}
结果:
来自《岁月的童话》
如果有带给你一丝丝小快乐,就让快乐继续传递下去,欢迎转载,点赞,顶,欢迎留下宝贵的意见,多谢支持!