Exportar archivos ODS a XLSX en la nube
Excel y exportación de hojas de cálculo de OpenOffice con Cloud SDK de código abierto para NodeJS
Exportar archivos ODS a XLSX en Cloud SDK para NodeJS
- Crea una cuenta enPanel para obtener gratis API cuota y detalles de autorización
- Inicialice
CellsApi
con ID de cliente, secreto de cliente, URL base y versión API - Llame al método
cellsWorkbookPutConvertWorkbook
para obtener la transmisión XLSX resultante
Comience con Excel DESCANSO API
Obtenga el código fuente Excel Cloud SDK for .NET deGitHub para compilar el SDK usted mismo o diríjase alLanzamientos para opciones de descarga alternativas.
También eche un vistazo a Basado en SwaggerAPI Referencia para saber más sobre elExcel DESCANSO API.
Código NodeJS para conversión de ODS a XLSX
// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-node/
const { CellsApi, CellsWorkbook_PutConvertWorkbookRequest } = require("asposecellscloud");
const localPath = "../TestData/source/";
var fs = require('fs');
var path = require('path');
const cellsApi = new CellsApi(process.env.ProductClientId, process.env.ProductClientSecret);
var req = new CellsWorkbook_PutConvertWorkbookRequest({
file: fs.createReadStream(localPath + "datasource.xlsx"),
format: "xlsx",
});
cellsApi.cellsWorkbookPutConvertWorkbook(req)
.then((result) => {
console.log(result)
});
FAQ
-
How can I get started with Aspose. REST APIs?Quickstart not only guides through the initialization of Aspose. Cloud API, it also helps in installing the required libraries.
-
Where can I see the release notes for Aspose. Cloud API?Complete release notes can be reviewed at Aspose. Cloud Documentation.
-
Is it safe to convert to in the Cloud?Of course! Aspose Cloud uses Amazon EC2 cloud servers that guarantee the security and resilience of the service. Please read more about Aspose's Security Practices.
-
What file formats are supported by Aspose. Cloud API?Aspose. Cloud can convert to and more. Checkout the complete list of supported file formats.
-
I do not have time to set up. Is there a quick demo for to that I can try?Indeed! Checkout the to Conversion App.