67,538
社区成员
发帖
与我相关
我的任务
分享
package test;
import org.apache.poi.hslf.HSLFSlideShow;
import org.apache.poi.hslf.model.Shape;
import org.apache.poi.hslf.model.TextBox;
import org.apache.poi.hslf.usermodel.SlideShow;
public class TestPOI {
/**
* @param args
*/
public static void main(String[] args)
{
try
{
SlideShow ss = new SlideShow(new HSLFSlideShow("C:\\测试.ppt"));
org.apache.poi.hslf.model.Slide[] slides = ss.getSlides();
Shape[] sps = slides[0].getShapes();
System.out.println(((TextBox)sps[0]).getText());
}
catch(Exception ex)
{
System.out.println(ex.toString());
}
}
}