本文介绍如何使用Spire.Presentation for Java来读取PPT幻灯片中的批注内容,包括添加批注的作者、批注内容以及添加批注的时间等。
PPT测试文档如下,含如下批注内容:
import com.spire.presentation.*;
import java.util.Date;
public class GetComment {
public static void main(String[] args) throws Exception{
//加载PPT测试文档
Presentation ppt = new Presentation();
ppt.loadFromFile("addcomment.pptx");
//获取指定幻灯片(第2张)
ISlide slide = ppt.getSlides().get(1);
//获取幻灯片中的第一个批注
Comment comment = slide.getComments()[0];
String author = comment.getAuthorName();
String commenttext = comment.getText();
Date time = comment.getDateTime();
//输出获取的批注内容
System.out.println( "批注作者:" + author + "\n"
+ "添加批注时间:" + time + "\n"
+ "批注内容:" + commenttext + "\n");
}
}
批注内容读取结果: