本文介绍使用spire.doc for java将wps文字文档转为pdf格式的方法。
import com.spire.doc.*;
import java.io.file;
import java.io.fileinputstream;
import java.io.ioexception;
public class wordtopdf{
public static void main(string[] args)throws ioexception {
//通过流加载wps文字文档
fileinputstream inputstream = new fileinputstream(new file("input.wps"));
document document = new document();
document.loadfromstream(inputstream, fileformat.doc);
//保存为pdf
document.savetofile("wpstopdf.pdf",fileformat.pdf);
}
}
wps文档:
转换后的pdf文档: