Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一个小项目,我必须阅读 100 多个 MS Word 文件并遍历每个文件并更新它们的页眉和页脚。我想在 ColdFusion 10/11 中完成这项任务。
有什么办法可以在 ColdFusion 中完成吗?
该<cfdirectory>标记可用于处理目录中的文件,例如使用<cfloop>.
<cfdirectory>
<cfloop>
ColdFusion 对 MS Office 文件有一些支持。您可以对 Excel 电子表格进行操作<cfspreadsheet>,在写入文件之前使用并使用 SpreadsheetSetFooter() 等函数读取文件。
<cfspreadsheet>
但是,Word 文件没有可比的功能!
Adobe ColdFusion 文档
RIA Forge 有一个工具叫做
http://docxextractor.riaforge.org/
它从 docx 文件中提取数据。但是它不会创建 docx 文件
免责声明:我写了这个