检测和删除Java中的单词宏
#编程 #api #java #word

word宏是指一组编程说明,这些说明可以使Word文档中的任务自动化。随着您的需求改变,您有时可能需要删除现有的宏。本文将分享如何使用Free Spire.doc为Java进行编程检测和删除Word文档中的所有VBA宏。

导入JAR依赖性

方法1:下载free library并解压缩。然后将spire.doc.jar文件添加到您的java应用程序中作为依赖项。
方法2:通过将以下配置添加到pom.xml。

<repositories>
   <repository>
      <id>com.e-iceblue</id>
      <name>e-iceblue</name>
      <url>https://repo.e-iceblue.com/nexus/content/groups/public/</url>
   </repository>
</repositories>
<dependencies>
   <dependency>
      <groupId>e-iceblue</groupId>
      <artifactId>spire.doc.free</artifactId>
      <version>5.1.0</version>
   </dependency>
</dependencies>

示例代码

要删除Word文档中的Exsting宏,您需要首先加载DOCM(Word acro-Nabled文档)文件,然后使用 document.iscontainmacro()文档。 clearmacros()检测和去除宏的方法。完整的示例代码如下所示。

import com.spire.doc.Document;
import com.spire.doc.FileFormat;


public class RemoveMacro {
    public static void main(String[] args) throws Exception {

        //Load the Sample Word document.
        Document doc = new Document();
        doc.loadFromFile("macros.docm");

        //If the document contains Macros, remove them from the document.
        if (doc.isContainMacro() )
        {
            doc.clearMacros();
        }

        //save to file
        doc.saveToFile("RemoveMacro.docm", FileFormat.Docm);

    }
}

RemoveMacro