ODF 1.1 ve 1.2 Özelliklerine Göre ODS Dosyasını Kaydet
Contents
[
Hide
]
Aspose.Cells, ODF 1.1 ve ODF 1.2 özelliklerine göre (Açık Belge Biçimi) ODS dosyasını kaydetmeyi destekler. Aspose.Cells, ODS dosyasını 1.1 özelliğini kullanmak için OdsSaveOptions.setStrictSchema11() özelliğini ekledi. Bu özelliğin varsayılan değeri false olduğundan, bu özel ayarlar olmadan kaydedilen ODS dosyası 1.2 özelliğini kullanacaktır.
Aşağıdaki örnek kod, çalışma kitabı nesnesini oluşturur, ilk çalışma sayfasının A1 hücresine bazı değerler ekler ve ardından ODS dosyasını ODF 1.1 ve 1.2 özelliklerine göre kaydeder. Varsayılan olarak, ODS dosyası ODF 1.2 özelliği kullanılarak kaydedilir.
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 | |
// The path to the documents directory. | |
String dataDir = Utils.getDataDir(SaveODSfile.class); | |
// Create workbook | |
Workbook workbook = new Workbook(); | |
// Access first worksheet | |
Worksheet worksheet = workbook.getWorksheets().get(0); | |
// Put some value in cell A1 | |
Cell cell = worksheet.getCells().get("A1"); | |
cell.putValue("Welcome to Aspose!"); | |
// Save ODS in ODF 1.2 version which is default | |
OdsSaveOptions options = new OdsSaveOptions(); | |
workbook.save("ODF1.2.ods", options); | |
// Save ODS in ODF 1.1 version | |
options.setOdfStrictVersion(OpenDocumentFormatVersionType.ODF_11); | |
workbook.save("ODF1.1.ods", options); | |
// Save ODS in ODF 1.3 version | |
options.setOdfStrictVersion(OpenDocumentFormatVersionType.ODF_13); | |
workbook.save("ODF1.3.ods", options); | |