Apple Inc. tarafından Aspose.Cells kullanılarak geliştirilen Numbers Hesap Tablosunu Okuyun
Contents
[
Hide
]
Olası Kullanım Senaryoları
Numbers, Apple Inc. tarafından geliştirilen bir elektronik tablo uygulamasıdır. Aspose.Cells, Numbers elektronik tablosunu okuyabilir ancak ona yazmayı desteklemez. Numbers elektronik tablosunun Verilerini, Stilini ve Formüllerini okuyabilir.
Apple Inc. tarafından Aspose.Cells kullanılarak geliştirilen Numbers Hesap Tablosunu Okuyun
Aşağıdaki örnek kod,Örnek Numbers Elektronik Tablo ve onu dönüştürürÇıktı PDF Formatı . kullanmak zorunda kalacaksın**LoadOptions** sınıflandır ve belirt**LoadFormat.NUMBERS**başarıyla yüklemek için yapıcısında bir parametre olarak. Lütfen ikisini de verilen bağlantılardan indirin. Kodu herhangi bir Numbers e-tablosu ile deneyebilirsiniz. Lütfen daha fazla yardım için kodun yorumlarını da okuyun.
Basit kod
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java | |
// Specify load options, we want to load Numbers spreadsheet. | |
LoadOptions opts = new LoadOptions(LoadFormat.NUMBERS); | |
// Load the Numbers spreadsheet in workbook with above load options. | |
Workbook wb = new Workbook(srcDir + "sampleNumbersByAppleInc.numbers", opts); | |
// Save the workbook to pdf format | |
wb.save(outDir + "outputNumbersByAppleInc.pdf", SaveFormat.PDF); |