Excel Çalışsayfası Başına Bir PDF Sayfası Oluşturma Excel den PDF ye Dönüştürme

Contents
[ ]

Lütfen birden çok çalışsayfasına sahip bir Excel dosyasını PDF’ye dönüştüren aşağıdaki örnek kodu inceleyin.

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// The path to the documents directory.
String dataDir = Utils.getDataDir(ExceltoPDF.class);
// Initialize a new Workbook
// Open an Excel file
Workbook workbook = new Workbook(dataDir + "Mybook.xls");
// Implement one page per worksheet option
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
pdfSaveOptions.setOnePagePerSheet(true);
// Save the PDF file
workbook.save(dataDir + "OutputFile.pdf", pdfSaveOptions);