现代 JavaScript 库允许 Node.js via .NET 开发人员使用几行代码 DOC 组合成一个 RTF 我们的 DOC 转换引擎会分析原始的 DOC 布局和结构,并将合并后的内容导出为 RTF 格式。
使用 JavaScript 以最大的灵活性和速度 DOC 转换为 RTF 运行在线演示并在浏览器中 RTF DOC 转换 API 支持一堆有用的选项。
要将多个 DOC 转换为 RTF 只需使用处理所有低级细节的 JavaScript
转换多个 DOC 并将结果保存为单个 RTF 文件。如果您使用 JavaScript 开发代码,这将比听起来简单。请参阅 JavaScript 示例,该示例遍历文档并将它们转换为 RTF 格式:
npm install @aspose/words
复制
const aw = require('@aspose/words');
var fileNames = [ "Input1.doc", "Input2.doc" ]
var output = new aw.Document()
// 在追加之前从目标文档中删除所有内容。
output.removeAllChildren()
fileNames.forEach(fileName => {
var input = new aw.Document(fileName);
// 将源文档追加到目标文档的末尾。
output.appendDocument(input, aw.ImportFormatMode.KeepSourceFormatting);
});
output.save("Output.rtf");
We host our Node.js via .Net packages in NPM repositories. Please follow the step-by-step instructions on how to install "Aspose.Words for Node.js via .NET" to your developer environment.
This package is compatible with Node.js 14.17.0 or higher.
您可以将DOC合并为许多其他文件格式: