当前位置:   article > 正文

Word处理控件Aspose.Words功能演示:使用 C# ASP.NET 合并 MS Word 文档

Word处理控件Aspose.Words功能演示:使用 C# ASP.NET 合并 MS Word 文档

Aspose.Words 是一种高级Word文档处理API,用于执行各种文档管理和操作任务。API支持生成,修改,转换,呈现和打印文档,而无需在跨平台应用程序中直接使用Microsoft Word。此外,

Aspose API支持流行文件格式处理,并允许将各类文档导出或转换为固定布局文件格式和最常用的图像/多媒体格式。

Aspose.words 最新下载(qun:761297826)icon-default.png?t=N176https://www.evget.com/product/4116/download

如果您正在处理一堆 Word 文档,您可能会遇到需要以编程方式将多个文档合并为一个文档的场景。为此,本文为您提供了有关如何使用 C# 在 ASP.NET 应用程序中合并 MS Word 文档的完整指南。

合并多个 MS Word 文档可能有助于将相同类型的文档保存到一个文件中,在共享之前合并多个文档,等等。为了让您实现这一点,我们将向您展示如何创建一个 ASP.NET 应用程序来合并 MS Word (DOC/DOCX) 文档。此 Word 文档合并应用程序将具有以下功能:

一、用于在 ASP.NET 中合并 MS Word 文档的 C# 库

Aspose.Words for .NET是一个功能丰富的文字处理库,可让您轻松处理 MS Word 文档。它还允许您在 ASP.NET 或任何 .NET/.NET Core 应用程序中将多个 Word 文档合并为一个文档。Aspose.Words for .NET 可以使用NuGet安装,也可以作为DLL文件下载。

PM> install-package Aspose.Words

二、在 ASP.NET 中合并 MS Word 文档

以下是创建 ASP.NET 应用程序的步骤,该应用程序可让您在不使用 MS Office/Word 的情况下合并两个或多个 Word (DOC/DOCX) 文档。

  • 在 Visual Studio 中创建ASP.NET Core Web 应用程序

  • 从模板列表中选择Web 应用程序(模型-视图-控制器) 。

  • 从 NuGet 包管理器或包管理器控制台安装Aspose.Words for .NET 。

  • 在index.cshtml文件中插入以下脚本。
@{
ViewData["Title"] = "Merge MS Word Documents in ASP.NET";
}

<div class="row">
<div class="col-md-12" align="center">
<h2 class="text-info">Merge Two or More Word DOC/DOCX Documents</h2>
<p class="text-info">Merge MS Word documents and get the results in DOCX or PDF format.</p>
</div>
</div>
<br />
<form asp-controller="Home" asp-action="UploadFiles" method="post" class="form-inline dropzone" enctype="multipart/form-data">
<div class="row">
<div class="col-md-12" align="center">
<div>
<input type="file" id="input-id" name="files" multiple accept=".doc, .docx" class="form-control file" data-preview-file-type="text" />
</div>
</div>
</div>
<hr />
<div class="row">
<div class="col-md-12" align="center">
<div class="input-group-lg">
<strong>Save As</strong>
<select name="outputFormat" class="form-control">
<option value="DOCX">DOCX</option>
<option value="PDF">PDF</option>
</select>
<button type="submit" class="form-control btn btn-success">Merge and Download</button>
</div>
</div>
</div>
</form>
<script>
// Drag and drop plugin options
$("#input-id").fileinput({ 'mainClass': "input-group-lg", 'showBrowse': true, 'showUpload': false, 'previewFileType': 'any', 'showClose': false, 'maxFileCount': 5, });
</script
  • 在HomeController.cs类中插入以下代码。
public FileResult UploadFiles(List<IFormFile> files, string outputFormat)
{
if (files.Count() <= 1)
{
// display some message
return null;
}
string fileName = "merged-document.docx";
string path = "wwwroot/uploads";
List<Document> documents = new List<Document>();
// upload files
foreach (IFormFile file in files)
{
string filePath = Path.Combine(path, file.FileName);
// Save files
using (var stream = new FileStream(filePath, FileMode.Create))
{
file.CopyTo(stream);
}
// Add all documents to the list
documents.Add(new Document(filePath));
}
// Load first Word document
Document doc1 = documents[0];
for (int i = 1; i < documents.Count(); i++)
{
// Merge Word documents
doc1.AppendDocument(documents[i], ImportFormatMode.KeepSourceFormatting);
}

var outputStream = new MemoryStream();
if (outputFormat == "DOCX")
{
doc1.Save(outputStream, SaveFormat.Docx);
outputStream.Position = 0;
// Return generated Word file
return File(outputStream, System.Net.Mime.MediaTypeNames.Application.Rtf, fileName);
}
else
{
fileName = "merged-document.pdf";
doc1.Save(outputStream, SaveFormat.Pdf);
outputStream.Position = 0;
// Return generated PDF file
return File(outputStream, System.Net.Mime.MediaTypeNames.Application.Pdf, fileName);
}
}
view rawHomeController.cs hosted with ❤ by GitHub
在_layout.cshtml文件的 head 标签中包含以下拖放插件的 JS 和 CSS 文件。
<!--drag and drop file plugin-->
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-fileinput/5.0.9/css/fileinput.min.css" media="all" rel="stylesheet" type="text/css" />
<script src="https://code.jquery.com/jquery-3.3.1.min.js" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-fileinput/5.0.9/js/fileinput.min.js"></script>
<!--end of drag and drop-->
  • 构建应用程序并在浏览器中运行它。

以上便是使用 C# ASP.NET 合并 MS Word 文档 ,要是您还有其他关于产品方面的问题,欢迎咨询我们,或者加入我们官方技术交流群。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/367386
推荐阅读
相关标签
  

闽ICP备14008679号