PPT
PPTX
ODP
POT
ppsx
PPT
使用 Java 编辑 PPT
构建您自己的 Java 应用程序,以使用服务器端 API 查找和替换演示文件中的文本。了解如何搜索和替换 PPT 演示文稿的内容、评论或元数据中的文本
通过 Java 编辑 PPT 演示文稿
只需几行代码即可使用 Aspose.Slides for Java API 搜索和替换内容、评论、幻灯片注释或元数据中的文本。在 PowerPoint 和 OpenOffice 中查找和替换文本。通过正则表达式数据匹配在演示文稿中编辑文本、评论和元数据。
使用 Java 编辑 PPT 演示文稿
Presentation presentation = new Presentation("welcome-to-powerpoint.ppt");
try {
SlideUtil.findAndReplaceText(presentation, true, "PowerPoint", "Aspose.Slides", null);
presentation.save("replaced.ppt", SaveFormat.Ppt);
} finally {
if (presentation != null) presentation.dispose();
}
如何通过 Java 编辑 PPT
这些是编辑 PPT 文件的步骤。
使用 Presentation 实例加载 PPT。
使用 FindAndReplaceText 方法查找和替换文本。
以 PPT 格式保存结果