使用 NET REST API 在 Word 中插入段落

本文介绍如何使用 NET REST API 在 Word 中插入段落。您将学习使用 .NET 云 SDK 如何使用 C# REST API 在 Word 中插入自动段落。本文分享了编写应用程序的示例代码和步骤。

先决条件

  • [创建账户并获取 API 凭证]( https://kb.aspose.cloud/ 总计/净/如何创建-aspose-cloud-apis 帐户/)

  • 下载 Aspose.Words Cloud SDK for Dotnet to add a paragraph in a Word file

  • 使用上述 SDK 设置 C# 解决方案项目,用于在指定位置插入段落

使用 C# Low Code API 在 Word 中插入新段落的步骤

  1. 实例化配置对象并使用它声明一个 WordsApi 对象
  2. 将源 Word 文件读入字节数组以添加段落
  3. 创建 ParagraphInsert 类的对象并设置新文本
  4. 通过提供输入文档、段落数据和位置来实例化 InsertParagraphOnlineRequest 对象
  5. 使用上述请求对象调用 InsertParagraphOnline() 方法插入段落
  6. 保存 API 返回的流的输出文件

这些步骤总结了如何使用 C# Low Code API 在 Word 中插入段落。使用客户端 ID 和密钥创建 Configuration 对象,实例化 WordsApi 对象,将输入文件读入字节数组,并创建 ParagraphInsert 对象以设置新段落的文本。初始化 InsertParagraphOnlineRequest() 对象并在 InsertParagraphOnline() 方法中使用它来插入段落。

使用 C# REST API 插入段落的代码

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Aspose.Words.Cloud.Sdk;
using Aspose.Words.Cloud.Sdk.Model;
using Aspose.Words.Cloud.Sdk.Model.Requests;
namespace WordsSample.Words
{
public class WordFileOperations
{
public void InsertParagraph()
{
var config = new Configuration { ClientId = "clientId", ClientSecret = "secret" };
var wordsApi = new WordsApi(config);
using var requestDocument = File.OpenRead("TableSample.docx");
var requestParagraph = new ParagraphInsert()
{
Text = "This is a new paragraph for your document",
};
var insertRequest = new InsertParagraphOnlineRequest(requestDocument, requestParagraph, nodePath: "sections/0");
string output = "output.docx";
insertRequest.DestFileName = output;
var task = wordsApi.InsertParagraphOnline(insertRequest);
task.Wait();
var result = task.Result;
if (result.Document.TryGetValue(output, out var stream))
{
stream.Position = 0;
using (var fileStream = File.Create(output))
{
stream.Seek(0, SeekOrigin.Begin);
stream.CopyTo(fileStream);
}
}
}
}
}

此示例代码演示了如何在 Word 中插入自动段落。使用 InsertParagraphOnlineRequest 对象中的 DestFileName 属性定义目标文件名,以检索 API 响应的输出。您还可以使用 insertBeforeNode 属性使用其他选项,例如加载编码、密码、修订作者姓名和日期以及索引。

本文教我们在Word文件中插入段落。如果要设置现有段落的格式,请参考以下文章:使用 NET REST API 在 Word 中设置段落格式

 简体中文