Belirtilmemiş Tarih Formatı Desenini Görüntüle ve Özelleştir mm dd
Contents
[
Hide
]
Aspose.Cells artık g, ge.mm.dd gibi özel tarih biçimi desenlerini dönüştürebilmektedir. Lütfen bağlı excel dosyası ve Aspose.Cells tarafından dönüştürülmüş dönüştürülmüş PDF dosyasını kontrol edin.
Özel Tarih Biçimi Deseni g ve ge.mm.dd’yi Dönüştürme
Aşağıdaki örnek kod, özel format desenleri olan tarih değerlerini içeren kaynak excel dosyasını nasıl çıktı PDF’ye dönüştüreceğinizi göstermektedir.
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 directories. | |
String sourceDir = Utils.Get_SourceDirectory(); | |
String outDir = Utils.Get_OutputDirectory(); | |
Workbook workbook = new Workbook(sourceDir + "sampleRenderCustomDateFormat.xlsx"); | |
workbook.save(outDir + "sampleRenderCustomDateFormat_out.pdf"); |