本文将介绍如何使用spire.presentation for java将powerpoint文件另存为xps。
原powerpoint文档:
import com.spire.presentation.*;
public class ppttoxps {
public static void main(string[] args) throws exception{
//创建presentation对象
presentation ppt = new presentation();
//加载示例文档
ppt.loadfromfile("sample.pptx");
//保存为xps
ppt.savetofile("toxps.xps", fileformat.xps);
ppt.dispose();
}
}
效果图: