操作PowerPoint文档时,有时需要将幻灯片复制到指定位置。除了手动复制和粘贴外,还可以通过后端调用Java代码来自动执行。本文从以下两个方面讨论了如何使用Java代码实现幻灯片复制功能:
在同一个PowerPoint文档内复制幻灯片在两个PowerPoint文档之间使用幻灯片复制工具:Free S for Java(免费版本)
(包可以在电子iceblue中文主页上找到。或者,Java程序会创建一个Maven存储库,并在文件中引用以下代码来引用Jar包:)
Repositories
存储库(repository)
Idcom.e-iceblue/id
Namee-iceblue/name
Url/url
/存储库
/repositories
Dependencies
Dependency
GroupIde-iceblue/groupId
工件id;/工件id
版本3.9.0/版本
/dependency
/dependencies在同一个PowerPoint文档中复制幻灯片
以下代码过程用于将PowerPoint文档中的指定幻灯片复制到此文档中的指定位置或结束位置。
创建Presentation实例。使用Pre()方法加载PowerPoint示例文档。Pre()。使用get()方法获取要复制的指定幻灯片。Pre()。使用insert()方法将幻灯片复制到此文档中的指定位置。Pre()。使用append()方法将幻灯片复制到此文档的结束位置。使用Pre()方法保存生成的文档。Import com.*;
public classcopyslideswithinppt {
public static void main(string[]args)throws exception {
创建//Presentation实例
presentation PPT=new presentation();
//加载PowerPoint示例文档
(' c : \ \ users \ \ test 1 \ \ desktop \ \;);
//获取复制操作的第二张幻灯片
ISlide slide=()。get(1);
//将此幻灯片复制到文档中第四张幻灯片的位置
int index=3;
()。insert(索引、幻灯片);
//将此幻灯片复制到文档末尾
()。append(幻灯片);
//保存结果文档
String result=' outpu中选择另一种天花板类型。
(result、FileFormat。PPTX _ 2013);
}
}
在两个PowerPoint文档之间复制幻灯片
以下代码过程用于将一个PowerPoint文档中的指定幻灯片复制到另一个PowerPoint文档中的指定位置或结束位置。
创建Presentation实例并加载PowerPoint示例文档1。创建Presentation实例并加载PowerPoint示例文档2。Pre()。使用get()方法从文档1中获取指定的幻灯片。Pre()。使用insert()方法将文档1中的幻灯片复制到文档2中的指定位置。Pre()。使用append()方法将幻灯片从「文件1」复制到「文件2」的结尾。使用Pre()方法将文档2保存到指定路径。Import com.FileFormat
Import com.Presentation
public classcopyslidesbetweenppt {
public static void main(string[]args)throws exception {
创建//Presentation实例并加载示例文档1
presentation PP tone=new presentation();
(' c : \ \ users \ \ test 1 \ \ desktop \ \;);
创建//Presentation实例并加载示例文档2
presentation PPT two=new presentation();
(' c : \ \ users \ \ test 1 \ \ desktop \ \;);
//将文件1中的第一张幻灯片复制到文件2中的第二张幻灯片位置
()。insert(0,())。get(1);
//将文档1中的第四张幻灯片复制到文档2的末尾
()。append()。get(3);
//将文档2保存到指定路径
(' outpu,FileFormat。PPTX _ 2013);
}
}
1.《【怎么把另外的ppt复制过来】Java复制PowerPoint幻灯片》援引自互联网,旨在传递更多网络信息知识,仅代表作者本人观点,与本网站无关,侵删请联系页脚下方联系方式。
2.《【怎么把另外的ppt复制过来】Java复制PowerPoint幻灯片》仅供读者参考,本网站未对该内容进行证实,对其原创性、真实性、完整性、及时性不作任何保证。
3.文章转载时请保留本站内容来源地址,https://www.lu-xu.com/keji/2534815.html