使用jacob,下载jar包及对应的dll文件
ppt文件转pptx
public static void pptConveter(File file) {
ComThread.InitSTA();
ActiveXComponent activexcomponent = new ActiveXComponent(
"PowerPoint.Application");
System.out.println("正在转换 "+file.getAbsolutePath()+"");
boolean flag = false;
try {
Dispatch dispatch = activexcomponent.getProperty("Presentations")
.toDispatch();
Dispatch dispatch1 = Dispatch.call(dispatch, "Open", file.getAbsolutePath(),
new Variant(-1), new Variant(-1), new Variant(0))
.toDispatch();
Strin