使用 Cells Cloud SDK for C# 将 FODS 转换为 DOCX
API
PUT
https://api.aspose.cloud/v3.0/cells/convert
将文件格式从 FODS 转换为 DOCX 可能是一项复杂的任务。我们的 C# SDK 处理所有 FODS 到 DOCX 格式的转换,同时保留源 FODS 电子表格的主要结构和逻辑内容。我们的 C# 库提供了在线将 FODS 转换为 DOCX 文件的专业解决方案。该Cloud SDK为C#开发者提供强大的功能,并保证高质量的DOCX输出。
C# 使用 Cells Cloud SDK 将 FODS 转换为 DOCX 的代码示例
// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/
string name = "Book1.fods";
string format = "docx";
string password = null;
string outPath = null;
string storageName = null;
string destFile = "Book1.docx";
CellsApi cellsApi = new CellsApi(Environment.GetEnvironmentVariable("ProductClientId"), Environment.GetEnvironmentVariable("ProductClientSecret"));
using (Stream stream = cellsApi.CellsWorkbookPutConvertWorkbook(File.OpenRead(name), format, password, outPath, storageName))
{
using (Stream outStream = File.OpenWrite(destFile))
{
stream.CopyTo(outStream);
}
}
如何使用 Cells Cloud Net 库将 FODS 转换为 DOCX。
- 注册一个帐户仪表板获取免费API配额和授权详细信息
- 安装 C# 库并将引用(导入库)添加到您的项目中。
- 打开C#中的源文件
- 使用 `PutConvertWorkbook` 方法检索结果流。
系统要求
- NET Framework 4.5.2 或更高版本
- 网络标准 2.0 或更高版本