PUT
https://api.aspose.cloud/v3.0/cells/convert
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";
	PutConvertWorkbookRequest request = new PutConvertWorkbookRequest();
	request.File = new Dictionary<string, Stream>();
	Stream fileStream = File.OpenRead(filePath);
	request.File.Add(filePath, fileStream);
	request.format = "xps";
	request.streamFormat = "html";
	Stream stream = cellsApi.PutConvertWorkbook(request);
	fileStream.Close();
 
 

Unterstützte Dateiformate

 
 
Eingabeformat
  • Microsoft Excel: Xls, Xlsx, Xlsb, Xlsm, Xlt, Xltx, Xltm
  • OpenOffice: Odds, Fods, Ots
  • XML:TabellenkalkulationML, XML
  • Text: Csv, Tsv, Txt (TabDelimited)
  • Netz: HTML, Mhtml
  • Bilder: Png, Jpg, Gif, EMF
  • Andere: PDF, Json, Markdown
Ausgabeformat
  • Microsoft Excel: Xls, Xlsx, Xlsb, Xlsm, Xlt, Xltx, Xltm
  • Microsoft Wort/PowerPoint: Docx, Pptx
  • OpenOffice: Odds, Fods, Ots
  • XML:TabellenkalkulationML, XML
  • Text: Csv, Tsv, Txt (TabDelimited)
  • Netz: HTML, Mhtml
  • Bilder: Png, Jpg, Gif, EMF, Svg, Tiff
  • Andere: PDF, XPS, Dif, Json, Markdown, SQL
 
 
 
 
 

Beliebte Operationen

 
 
 
 
 
 
 

Unterstützte Entwicklungssprachen