التحقق من الكلمة المستخدمة لحماية ورقة العمل
Contents
[
Hide
]
تحسنت واجهة برمجة تطبيقات Aspose.Cells الفئة Protection من خلال إدخال بعض الخصائص والطرق المفيدة. إحدى هذه الطرق هي verifyPassword التي تسمح بتحديد كلمة مرور كنمط نصي والتحقق مما إذا كانت نفس كلمة المرور قد استخدمت لحماية ورقة العمل.
التحقق من الكلمة المستخدمة لحماية ورقة العمل
يُعيد الطريقة Protection.verifyPassword قيمة صحيح إذا تطابقت كلمة المرور المحددة مع كلمة المرور المستخدمة لحماية الورقة العمل المعطاة، وخاطئ إذا لم تتطابق كلمة المرور المحددة. تستخدم القطعة التالية من الكود الطريقة Protection.verifyPassword بالاشتراك مع الخاصية Protection.isProtectedWithPassword للكشف عن حماية كلمة المرور، والتحقق من كلمة المرور.
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(VerifyPasswordtoProtectWorksheet.class); | |
// Create an instance of Workbook and load a spreadsheet | |
Workbook book = new Workbook(dataDir + "book1.xlsx"); | |
// Access the protected Worksheet | |
Worksheet sheet = book.getWorksheets().get(0); | |
// Check if Worksheet is password protected | |
if (sheet.getProtection().isProtectedWithPassword()) { | |
// Verify the password used to protect the Worksheet | |
if (sheet.getProtection().verifyPassword("password")) { | |
System.out.println("Specified password has matched"); | |
} else { | |
System.out.println("Specified password has not matched"); | |
} | |
} |