本简短指南可帮助您了解如何在云中使用 NET REST API **将 Word DOC 转换为 Markdown。要将 DOC 导出为 MD 格式,我们使用 Aspose.Words for .NET Cloud SDK。如果您对 C# 低代码 API 中 **Word 到 Markdown 的转换感兴趣,请使用给定的示例代码和步骤执行此任务。
先决条件
- 创建帐户并获取 API 凭据
- 下载 Aspose.Words Cloud SDK for Dotnet
- 使用上述 SDK 设置 C# 项目
使用 NET REST API 将 Word 转换为 Markdown 的步骤
- 设置 API 的 Client ID 和 Client Secret 以转换为 MD
- 使用客户端凭据创建 WordsAPI 类的对象
- 指定输入和输出文件
- 读取输入 DOC 文件并将其保存到字节数组
- 使用上面的字节数组实例化 ConvertDocumentRequest() 方法
- 调用 ConvertDocument 方法使用 REST API 将 DOC 转换为 MD
- 将输出的MD文件保存到本地磁盘
使用 C# REST API 将 DOC 转换为 MD 的代码
using Aspose.Words.Cloud.Sdk; | |
using Aspose.Words.Cloud.Sdk.Model.Requests; | |
using System; | |
using System.IO; | |
namespace WordsSample.Words | |
{ | |
public class WordsToMd | |
{ | |
public void ConvertWordToMdAsync() | |
{ | |
try | |
{ | |
var apiClient = new Configuration(); | |
apiClient.ClientSecret = "Client Secret"; | |
apiClient.ClientId = "Client ID"; | |
//Create SDK object | |
WordsApi wordsApi = new WordsApi(apiClient); | |
//string localPath = @""; | |
string inputFile = "Test1.doc"; | |
string outputFile = "DOCXToMD"; | |
string outputFormat = "md"; | |
//Read input file to bytes array | |
var inpuFileStream = File.Open(inputFile, FileMode.Open); | |
inpuFileStream.Position = 0; | |
ConvertDocumentRequest convertDocumentRequest = new ConvertDocumentRequest(inpuFileStream, outputFormat, null, null, null, null, null, null, null); | |
var conversionTask = wordsApi.ConvertDocument(convertDocumentRequest); | |
conversionTask.Wait(); | |
var outputFileStream = conversionTask.Result; | |
outputFileStream.Position = 0; | |
using (var fileStream = File.Create(outputFile+"."+ outputFormat)) | |
{ | |
outputFileStream.Seek(0, SeekOrigin.Begin); | |
outputFileStream.CopyTo(fileStream); | |
} | |
} | |
catch (Exception e) | |
{ | |
Console.WriteLine(e.Message); | |
} | |
} | |
} | |
} |
上面的示例代码片段使您能够使用 C# REST API 将 DOC 转换为 MD。您需要借助 Aspose.Words REST API SDK for C# 输入 DOC 文件,并使用 Aspose 在线转换 API 下载输出 MD 文件以将其保存在本地。 ConvertDocumentRequest 方法允许不同的配置,例如自定义字体的文件存储、解密受保护 Word 文件的密码、输入 TXT 和 HTML 文件的编码详细信息以及源文档存储。
此 DOC 到 MD 转换可用于 Windows、Linux 或 Mac 上的任何无代码或低代码应用程序。
您还可以在以下页面上查看另一个类似的功能:如何使用 NET REST API 将 DOC 转换为 EPUB。