博客
关于我
Java 添加、修改、读取、删除PPT备注
阅读量:409 次
发布时间:2019-03-06

本文共 4312 字,大约阅读时间需要 14 分钟。

概述

幻灯片中的备注信息是只提供给幻灯片演讲者观看的特定内容,在演讲者放映幻灯片时,备注信息可给演讲者提供讲解思路,起到辅助讲解的作用。本文将通过Java程序来演示如何操作PPT幻灯片中的备注信息,要点包括:

  1. 添加备注信息
  2. 修改备注信息
  3. 读取备注信息
  4. 删除备注信息

 

使用工具

  • Free Spire.Presentation for Java (免费版)

Jar文件获取及导入:

方法1:通过官网文件包。下载后,解压文件,并将lib文件夹下的Spire.Presentation.jar文件导入到java程序。参考如下导入效果:

 

 

方法2:可通过仓库安装导入到maven项目,可参考


 

Java 代码示例

【示例1】添加备注信息

import com.spire.presentation.*;public class AddSpeakNotes {    public static void main(String[] args) throws Exception{        //加载PowerPoint文档        Presentation ppt = new Presentation();        ppt.loadFromFile("sample.pptx");        //获取第一张幻灯片        ISlide slide = ppt.getSlides().get(2);        //添加备注幻灯片到第一张幻灯片        NotesSlide notesSlide = slide.addNotesSlide();        //添加备注标题        ParagraphEx paragraph = new ParagraphEx();        String string = "备注:";        paragraph.setText(string);        notesSlide.getNotesTextFrame().getParagraphs().append(paragraph);        //添加第一项备注        paragraph = new ParagraphEx();        paragraph.setText("第一项备注;");        notesSlide.getNotesTextFrame().getParagraphs().append(paragraph);        notesSlide.getNotesTextFrame().getParagraphs().get(1).setBulletType(TextBulletType.NUMBERED);        notesSlide.getNotesTextFrame().getParagraphs().get(1).setBulletStyle(NumberedBulletStyle.BULLET_ARABIC_PERIOD);        //添加第二项备注        paragraph = new ParagraphEx();        paragraph.setText("第二项备注;");        notesSlide.getNotesTextFrame().getParagraphs().append(paragraph);        notesSlide.getNotesTextFrame().getParagraphs().get(2).setBulletType(TextBulletType.NUMBERED);        notesSlide.getNotesTextFrame().getParagraphs().get(2).setBulletStyle(NumberedBulletStyle.BULLET_ARABIC_PERIOD);        //添加第三项备注        paragraph = new ParagraphEx();        paragraph.setText("第三项备注;");        notesSlide.getNotesTextFrame().getParagraphs().append(paragraph);        notesSlide.getNotesTextFrame().getParagraphs().get(3).setBulletType(TextBulletType.NUMBERED);        notesSlide.getNotesTextFrame().getParagraphs().get(3).setBulletStyle(NumberedBulletStyle.BULLET_ARABIC_PERIOD);        //保存文档        ppt.saveToFile("AddSpeakerNotes.pptx", FileFormat.PPTX_2013);        ppt.dispose();    }}

备注添加效果:

【示例2】修改备注信息

import com.spire.presentation.*;public class ModifySpeakerNotes {    public static void main(String[] args) throws Exception{        //加载测试文档        Presentation ppt = new Presentation();        ppt.loadFromFile("AddSpeakerNotes.pptx");        //获取指定幻灯片        ISlide slide = ppt.getSlides().get(2);        //修改指定备注信息        slide.getNotesSlide().getNotesTextFrame().getParagraphs().get(1).setText("新修改的备注信息");        slide.getNotesSlide().getNotesTextFrame().getParagraphs().get(2).setAlignment(TextAlignmentType.CENTER);        slide.getNotesSlide().getNotesTextFrame().getParagraphs().get(2).setBulletStyle(NumberedBulletStyle.BULLET_ROMAN_UC_PAREN_RIGHT);        //保存文档        ppt.saveToFile("modifySpeakerNotes.pptx",FileFormat.PPTX_2013);        ppt.dispose();    }}

备注修改效果:

【示例3】读取备注信息

import com.spire.presentation.*;import java.io.FileWriter;public class ExtractSpeakerNotes {    public static void main(String[] args) throws Exception{        //加载测试文档        Presentation ppt = new Presentation();        ppt.loadFromFile("AddSpeakerNotes.pptx");        //获取指定幻灯片        ISlide slide = ppt.getSlides().get(2);        //获取幻灯片中的备注内容        StringBuilder builder = new StringBuilder();        String notes = slide.getNotesSlide().getNotesTextFrame().getText();        builder.append(notes);        //保存到文本文档        FileWriter writer = new FileWriter("ExtractSpeakerNotes.txt");        writer.write(builder.toString());        writer.flush();        writer.close();    }}

备注信息读取结果:

【示例4】删除备注信息

import com.spire.presentation.*;public class DeleteSpeakerNotes {    public static void main(String[] args)  throws Exception{        //加载测试文档        Presentation ppt = new Presentation();        ppt.loadFromFile("test.pptx");        //获取指定幻灯片        ISlide slide = ppt.getSlides().get(2);        //删除备注信息        slide.getNotesSlide().getNotesTextFrame().getParagraphs().get(0).getTextRanges().clear();//删除指定段落中的备注信息        //slide.getNotesSlide().getNotesTextFrame().getParagraphs().clear();//删除所有备注信息        //保存文档        ppt.saveToFile("deleteSpeakerNotes.pptx",FileFormat.PPTX_2013);        ppt.dispose();    }}

备注信息删除效果:

 

(本文完)

转载请注明出处!

 

你可能感兴趣的文章
MySQL 存储引擎
查看>>
mysql 存储过程 注入_mysql 视图 事务 存储过程 SQL注入
查看>>
MySQL 存储过程参数:in、out、inout
查看>>
mysql 存储过程每隔一段时间执行一次
查看>>
mysql 存在update不存在insert
查看>>
Mysql 学习总结(86)—— Mysql 的 JSON 数据类型正确使用姿势
查看>>
Mysql 学习总结(87)—— Mysql 执行计划(Explain)再总结
查看>>
Mysql 学习总结(88)—— Mysql 官方为什么不推荐用雪花 id 和 uuid 做 MySQL 主键
查看>>
Mysql 学习总结(89)—— Mysql 库表容量统计
查看>>
mysql 实现主从复制/主从同步
查看>>
mysql 审核_审核MySQL数据库上的登录
查看>>
mysql 导入 sql 文件时 ERROR 1046 (3D000) no database selected 错误的解决
查看>>
mysql 导入导出大文件
查看>>
MySQL 导出数据
查看>>
mysql 将null转代为0
查看>>
mysql 常用
查看>>
MySQL 常用列类型
查看>>
mysql 常用命令
查看>>
Mysql 常见ALTER TABLE操作
查看>>
MySQL 常见的 9 种优化方法
查看>>