word excel转pdf,pdf合并,插入页码
将word转换为pdf,excel转换为pdf.pdf合并及在最终的pdf中添加页码
word转换为pdf
String wordPath = "C:\\Users\\cada\\Documents\\Tencent Files\\csasd\\FileRecv\\asdasd.docx";
if(AsposeWordUtil.isLicense()){
Document document = new Document(wordPath);
document.save("C:\\Users\\af\\Documents\\Tencent Files\\asd\\FileRecv\\asdasdpdf", SaveFormat.PDF);
}
excel转换为pdf
String cellPath = "C:\\Users\\ccc\\Documents\\Tencent Files\\cccs\\FileRecv\\1.xlsx";
if(AsposeCellsUtil.isLicense()){
Workbook workbook = new Workbook(cellPath);
workbook.save("C:\\Users\\ccc\\Documents\\Tencent Files\\ccc\\FileRecv\\cc.pdf", com.aspose.cells.SaveFormat.PDF);
}
pdf合并
com.aspose.pdf.Document pdfDocument1 =
new com.aspose.pdf.Document("C:\\Users\\asf\\Documents\\Tencent Files\\wfda\\FileRecv\\afas.pdf");
// Open second document
com.aspose.pdf.Document pdfDocument2 =
new com.aspose.pdf.Document("C:\\Users\\asww\\Documents\\Tencent Files\\asfsaaw\\FileRecv\\1.pdf");
pdfDocument1.getPages().add(pdfDocument2.getPages());
pdfDocument1.save("C:\\Users\\adas\\Documents\\Tencent Files\\adda\\FileRecv\\result.pdf");
添加页码
作者QQ
Γ(z)=∫0∞676621871 \Gamma(z) = \int_0^\infty 676621871 Γ(z)=∫0∞676621871

4000





