将每个工作表保存为不同的PDF文件使用Aspose.Cells
Contents
[
Hide
]
Aspose.Cells - 将每个工作表保存为不同的 PDF
Aspose.Cells支持将包含图像、图表等的XLS文件转换为PDF文档。 Aspose.Cells for Java可以独立工作,将 spreadsheet 转换为 Pdf 文档,您不需要再使用Aspose.Pdf for Java进行转换,转换也不需要创建/使用任何临时文件,整个过程可以在内存中完成。
Java
//Get the Excel file path
String filePath = dataDir + "workbook.xlsx";
//Instantiate a new workbook and open the Excel
//File from its location
Workbook workbook = new Workbook(filePath);
//Get the count of the worksheets in the workbook
int sheetCount = workbook.getWorksheets().getCount();
//Make all sheets invisible except first worksheet
for (int i = 1; i < workbook.getWorksheets().getCount(); i++)
{
workbook.getWorksheets().get(i).setVisible(false);
}
//Take Pdfs of each sheet
for (int j = 0; j < workbook.getWorksheets().getCount(); j++)
{
Worksheet ws = workbook.getWorksheets().get(j);
workbook.save(dataPath + ws.getName() + ".pdf");
if (j < workbook.getWorksheets().getCount() - 1)
{
workbook.getWorksheets().get(j + 1).setVisible(true);
workbook.getWorksheets().get(j).setVisible(false);
}
}
下载运行代码
下载示例代码
查看更多详情,请访问将每个工作表保存为不同的PDF文件。