本文将介绍如何使用spire.doc for java验证word文档的限制编辑密码是否正确。
import com.spire.doc.document;
public class verifyrestricteditingpassword {
public static void main(string[] args) {
//创建document实例
document document = new document();
//加载word文档
document.loadfromfile("input.docx");
//验证文档的限制编辑密码是否正确
boolean result = document.checkprotectionpassword("123");
if(!result) {
system.out.println("密码错误!");
}
else {
system.out.println("密码正确!");
}
}
}
结果: