Excel的出口对象

Aspose.Cells Cloud SDK 支持将工作簿和内部对象导出为 30 多种文件格式。

Aspose.Cells Cloud REST API 有助于将工作簿及其内部对象导出为各种格式,并提供适用于多种编程语言的 SDK,包括 Android、C#、Go、Java、NodeJS、Perl、PHP、Python、Ruby 和 Swift。

Export API
POST
https://api.aspose.cloud/v3.0/cells/export
Choose files

	using Aspose.Cells.Cloud.SDK.Api;
	using Aspose.Cells.Cloud.SDK.Request;
	using System;
	using System.IO;
	using System.Collections.Generic;
	CellsApi cellsApi = new CellsApi("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
	string filePath = "test.txt";
	PostExportRequest request = new PostExportRequest();
	request.File = new Dictionary<string, Stream>();
	Stream fileStream = File.OpenRead(filePath);
	request.File.Add(filePath, fileStream);
    request.format = "xps";
	request.objectType = "Background";
	Aspose.Cells.Cloud.SDK.Model.FilesResult result = cellsApi.PostExport(request);
	fileStream.Close();    
	    
 
 

支持的文件格式

 
 
输入格式
  • Microsoft Excel:Xls、Xlsx、Xlsb、Xlsm、Xlt、Xltx、Xltm
  • 开发办公室: Ods、Fods、Ots
  • XML:电子表格ML、Xml
  • 文本: Csv、Tsv、Txt(制表符分隔)
  • 网址: Html、Mhtml
输出格式
  • Microsoft Excel:Xls、Xlsx、Xlsb、Xlsm、Xlt、Xltx、Xltm
  • Microsoft字/PowerPoint:文档、PPT
  • 开发办公室: Ods、Fods、Ots
  • XML:电子表格ML、Xml
  • 文本: Csv、Tsv、Txt(制表符分隔)
  • 网址: Html、Mhtml
  • 图片: Png、Jpg、Gif、Emf、Svg、Tiff
  • 其他: Pdf、Xps、Dif、Json、Markdown、Sql
 
 
 
 
 

热门经营

 
 
 
 
 
 
 

支持的开发语言