这个简短的教程将指导如何使用 NET REST API 将 DOCX 转换为 MD。使用 Aspose.Words for .NET Cloud SDK 通过 C# REST API 开发 DOCX 到 MD 转换器。通过探索 SDK 并在任何受支持的平台中自定义流程,您可以使用许多其他功能来使用此功能。
先决条件
- 创建帐户并获取 API 凭据
- 下载 Aspose.Words Cloud SDK for Dotnet
- 使用上述 SDK 设置 C# 项目
使用 C# 低代码 API 将 DOCX 转换为 Markdown 的步骤
- 创建配置对象并设置客户端密钥和 ID
- 使用定义的配置实例化 WordsApi 对象
- 定义输入和输出文件
- 加载输入DOCX文件并初始化位置
- 使用上面的字节流和格式实例化ConvertDocumentRequest方法
- 调用 ConvertDocument 方法使用 REST API 将 DOCX 转换为 MD
- 将输出的MD文件保存到本地磁盘
请参阅以下步骤,使用 C# 低代码 API* 将 *Word 转换为 Markdown。使用具有客户端 ID 和密钥的 Configuration 对象创建 WordsApi 类对象,然后将源 HTML 文件读入字节数组。创建 ConvertDocumentRequest 对象并在 WordsApi.ConvertDocument() 方法中使用它从 Word 文件生成 MD 文件。
使用 C# REST API 将 DOCX 转换为 MD 的代码
using Aspose.Words.Cloud.Sdk; | |
using Aspose.Words.Cloud.Sdk.Model.Requests; | |
using System; | |
using System.IO; | |
namespace WordsSample.Words | |
{ | |
public class DocxToMd | |
{ | |
public void ConvertDocxToMdAsync() | |
{ | |
try | |
{ | |
var apiClient = new Configuration(); | |
apiClient.ClientSecret = "Secret"; | |
apiClient.ClientId = "ID"; | |
//Create SDK object | |
WordsApi wordsApi = new WordsApi(apiClient); | |
string input = "Sample.docx"; | |
string output = "DOCXToMD"; | |
string format = "md"; | |
//Read input file to bytes array | |
var fileStream = File.Open(input, FileMode.Open); | |
fileStream.Position = 0; | |
ConvertDocumentRequest request = new ConvertDocumentRequest(fileStream, format, null, null, null, null, null, null, null); | |
var task = wordsApi.ConvertDocument(request); | |
task.Wait(); | |
var outputFileStream = task.Result; | |
outputFileStream.Position = 0; | |
using (var stream = File.Create(output+"."+ format)) | |
{ | |
outputFileStream.Seek(0, SeekOrigin.Begin); | |
outputFileStream.CopyTo(stream); | |
} | |
} | |
catch (Exception e) | |
{ | |
Console.WriteLine(e.Message); | |
} | |
} | |
} | |
} |
此代码片段提供了使用 NET REST API* 将 *DOCX 更改为 Markdown 的基础。您可以通过在 ConvertDocumentRequest() 方法中设置各种参数来自定义转换,在此示例代码中该方法设置为 null。输出流保存到本地文件,但是您可以根据您的选择通过网络发送它或将其保存在数据库中。
您还可以在以下页面上查看另一个类似的功能:如何使用 NET REST API 将 Word 转换为 MHT。