本文介绍如何使用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");
}
}
批注内容读取结果: