使用Document.protect(int,java.lang.String)方法保护Word文档 。 使用Document.save()方法保存受保护的文档。 下面的代码示例演示如何使用Java保护Word DOCX文档。 // Load a DOCX file Document doc = new Document("word.docx"); String password = "123456"; // Protect with a protection type doc.protect(...
使用Document.protect(int,java.lang.String)方法保护Word文档 。 使用Document.save()方法保存受保护的文档。 下面的代码示例演示如何使用Java保护Word DOCX文档。 // Load a DOCX file Document doc = new Document("word.docx"); String password = "123456"; // Protect with a protection type doc.protect(...
使用Document.protect(int,java.lang.String)方法保护Word文档 。 使用Document.save()方法保存受保护的文档。 下面的代码示例演示如何使用Java保护Word DOCX文档。 // Load a DOCX file Document doc = new Document("word.docx"); String password = "123456"; // Protect with a protection type doc.protect(...
How do I count the number of pages in each word document in Powershell? How do I create a list of all files on C drive, excluding the Windows folder? How do I create a string with repeating characters? How Do I Edit a Text File in PowerShell?? How do I Export multiple line out...
使用Protect 方法保护整个文档。 VB 复制 Me.Protect(Word.WdProtectionType.wdAllowOnlyReading, _ False, String.Empty, False, False) 从文档保护中排除 Bookmark1。 VB 复制 Bookmark1.Range.Editors.Add(Word.WdEditorType.wdEditorEveryone) 编译代码 若要使用这些代码示例,请从项目内的 ThisDocument 类...
二、在 Java 中使用密码保护 Word DOCX 文件 以下是使用密码保护 Word DOCX 文档的简单步骤。 使用Document类加载 DOCX 文件。 使用Document.protect(int, java.lang.String)方法保护 Word 文档。 使用Document.save()方法保存受保护的文档。 以下代码示例显示了如何使用 Java 保护 Word DOCX 文档。
一、恶意Word文档 图1.打开的恶意Word文档 捕获的Word文档的名为“eml _-_ PO20180921.doc”。当它在MS Word中打开时,我们会看到如图1所示的内容。如您所见,窗口顶部有一条黄色警告消息。 一旦受害者点击图1中的黄色按钮“启用内容”,恶意VBA代码就会在后台执行。 VBA代码从“Document_Open”函数自动执行。它的...
AEdit has a bit of an outdated interface since the development team abandoned the software and haven't released an update since 2001, but it still works just fine for a word processor. AEdit lets you password protect documents and provides a spell check function, though it doesn't check fo...
public void Protect (Microsoft.Office.Interop.Word.WdProtectionType Type, ref object NoReset, ref object Password, ref object UseIRM, ref object EnforceStyleLock); 参数 Type WdProtectionType 必填。 指定文档的保护类型。 WdProtectionType. NoReset Object 可选对象。 如果为 False ,则将表单字段重置为...
Microsoft.Office.Interop.Word.dll Helps to protect the specified document from changes. When a document is protected, users can make only limited changes, such as adding annotations, making revisions, or completing a form. C# publicvoidProtect(Microsoft.Office.Interop.Word.WdProtectionType Type,refob...