启用 word 文档的安全选项对于保护敏感信息的安全至关重要。您可以使用密码对文档进行加密,这样未经授权的用户就无法打开文档;如果 word 中部分内容被要求不可修改,那么你可以锁定这一部分内容并保留对其他内容的编辑权限。在本文中,您将学习如何使用 spire.doc for python 在 python 中保护或解除 word 文档。
安装 spire.doc for python
本教程需要 spire.doc for python 和 plum-dispatch v1.7.4。您可以通过以下 pip 命令将它们轻松安装到 windows 中。
pip install spire.doc
如果您不确定如何安装,请参考此教程: 如何在 windows 中安装 spire.doc for python
python 启用 word 中的修订功能
spire.doc for python 提供 document.trackchanges 属性,用于启用 word 文档的跟踪更改模式。具体步骤如下:
- 创建一个 document 类对象。
- 使用 document.loadfromfile() 方法加载一个 word 文档。
- 将 document.trackchanges 属性设置为 true,从而启用文档的跟踪更改模式。
- 使用 document.savetofile() 方法保存结果文档。
- python
from spire.doc import *
from spire.doc.common import *
# 创建一个document对象
doc = document()
# 加载输入文档
doc.loadfromfile("输入文档.docx")
# 启用文档的修订跟踪功能
doc.trackchanges = true
# 将修改后的文档保存为"启用修订功能.docx"
doc.savetofile("启用修订功能.docx", fileformat.docx2016)
doc.close()
python 接受 word 中的修订
接受跟踪的更改可让您将建议的修改永久纳入文档。通过使用 spire.doc for python 提供的 document.acceptchanges() 方法,您可以轻松接受 word 文档中的所有跟踪修改。具体步骤如下:
- 创建一个 document 类对象。
- 使用 document.loadfromfile() 方法加载 word 文档。
- 使用 document.haschanges 属性检查文档是否有跟踪更改。
- 使用 document.acceptchanges() 方法接受文档中的跟踪更改。
- 使用 document.savetofile() 方法保存结果文档。
- python
from spire.doc import *
from spire.doc.common import *
# 创建一个document对象
doc = document()
# 加载示例文档
doc.loadfromfile("示例文档.docx")
# 检查文档是否有未接受的修订
if(doc.haschanges):
# 接受所有修订
doc.acceptchanges()
# 将文档保存为"接受修订.docx",使用word 2016的docx格式
doc.savetofile("接受修订.docx", fileformat.docx2016)
doc.close()
python 拒绝 word 中的修订
有时,建议的修改可能与您对文档的设想或要求不一致。在这种情况下,拒绝这些修改对于确保文档准确反映您的预期内容和格式选择至关重要。
spire.doc for python 提供了 document.rejectchanges() 方法,用于拒绝 word 文档中跟踪到的更改。具体步骤如下:
- 创建一个 document 类对象。
- 使用 document.loadfromfile() 方法加载 word 文档。
- 使用 document.haschanges 属性检查文档是否有跟踪更改。
- 使用 document.rejectchanges() 方法拒绝文档中的跟踪更改。
- 使用 document.savetofile() 方法保存结果文档。
- python
from spire.doc import *
from spire.doc.common import *
# 创建一个document对象
doc = document()
# 加载示例文档
doc.loadfromfile("示例文档.docx")
# 检查文档是否有未处理的修订
if(doc.haschanges):
# 拒绝所有修订,即保持原文不变,不应用任何更改
doc.rejectchanges()
# 将处理后的文档保存为"拒绝修订.docx",并使用word 2016的docx格式
doc.savetofile("拒绝修订.docx", fileformat.docx2016)
doc.close()
申请临时 license
如果您希望删除结果文档中的评估消息,或者摆脱功能限制,请该email地址已收到反垃圾邮件插件保护。要显示它您需要在浏览器中启用javascript。获取有效期 30 天的临时许可证。