الحصول على معرّف الورقة العمل فريد
Contents
[
Hide
]
الحصول على معرف فريد لورقة العمل
توفر Aspose.Cells القدرة على الحصول على معرّف فريد لورقة العمل باستخدام خاصية Worksheet.UniqueId. يوضح مقتطف الكود التالي استخدام خاصية Worksheet.UniqueId لطباعة المعرّف الفريد لورقة العمل. يستخدم مقتطف الكود التالي هذا ال ملف التعاريف عينة.
كود عينة
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 | |
//Source directory | |
String sourceDir = Utils.Get_SourceDirectory(); | |
// Load source Excel file | |
Workbook workbook = new Workbook(sourceDir + "Book1.xlsx"); | |
// Access first worksheet | |
Worksheet worksheet = workbook.getWorksheets().get(0); | |
// Print Unique Id | |
System.out.println("Unique Id: " + worksheet.getUniqueId()); |