用 Java 复制 PowerPoint 幻灯片(最好)
我有一个 Java 程序,我想在其中将 PowerPoint 幻灯片从一个演示文稿复制到另一个演示文稿中。我研究了 Apache POI 中的“幻灯片”API,但找不到任何类似功能的参考。
尽管调用程序将是 Java,但我愿意接受使用另一种语言进行实际工作的想法。例如,我可以在 Windows 上运行并通过 JACOB 或其他方式调用 COM 组件。
我怎样才能最好地实现这一目标?另外需要澄清的是,我需要支持 PPT 和 PPTX 格式。
I have a Java program in which I want to copy PowerPoint slides from one presentation into another. I have looked into the "Slides" API in Apache POI, but can't find any reference to a capability like that there.
Though the calling program will be Java, I'm open to the idea of the actual work being in another language. For example, I could run on Windows and call a COM component through JACOB or something.
How can I best achieve this? Also for clarification, I need to support both PPT and PPTX formats.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明,PowerPoint 自己的 COM API 有一个内置方法,可以使这变得非常简单: 从文件插入
It turns out that PowerPoint's own COM API has a built-in method that makes this quite easy: InsertFromFile