Esporta elenco oggetti È possibile esportare nei formati:XLS , XLSX , XLSB , CSV , TSV , XLSM , ODS , TXT , PDF , Fuori servizio , XPS , DIF , PNG , JPEG , BMP , SVG , TIFF , EMF , NUMERI , FODS ..
API
Tipo
Descrizione
Collegamento Swagger
/celle/esporta
INVIARE
Esporta Excel dal contenuto della richiesta in un formato
PostExport
ILSpecifiche OpenAPI definisce un’interfaccia di programmazione accessibile al pubblico e consente di eseguire interazioni REST direttamente da un browser web.
Puoi usarecURL Strumento da riga di comando per accedere facilmente ai servizi web Aspose.Cells. L’esempio seguente mostra come effettuare chiamate al Cloud API con cURL.
Copy
curl -X POST "https://api.aspose.cloud/v3.0/cells/export?objectType=listobject&format=tiff" -H "accept: multipart/form-data" -H "Content-Type: multipart/form-data" -H "x-aspose-client: Containerize.Swagger" -d { "File" :{}}
Copy {
"Files" : [{
"Filename" : "Book1_xlsx_Sheet1_ListObjects_0.tif" ,
"FileSize" : 390,
"FileContent" : "-----Base64String--------"
} , {
"Filename" : "Book1_xlsx_Sheet2_ListObjects_0.tif" ,
"FileSize" : 10040,
"FileContent" : "-----Base64String--------"
} , {
"Filename" : "myDocument_xlsx_Sheet1_ListObjects_0.tif" ,
"FileSize" : 382,
"FileContent" : "-----Base64String--------"
}]
}
Utilizzare un SDK è il modo migliore per accelerare lo sviluppo. Un SDK si occupa dei dettagli di basso livello e ti consente di concentrarti sulle attività del progetto. Dai un’occhiata aRepository GitHub per un elenco completo di Aspose.Cells Cloud SDK.
I seguenti esempi di codice mostrano come effettuare chiamate ai servizi Web Aspose.Cells utilizzando vari SDK:
C#
Java
PHP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php
require_once('vendor\autoload.php');
use \Aspose\Cells\Cloud\Api\CellsApi;
use \Aspose\Cells\Cloud\Request\PostExportRequest;
$CellsCloudClientId = "...." ; # get from https://dashboard.aspose.cloud/#/applications
$CellsCloudClientSecret = "...."; # get from https://dashboard.aspose.cloud/#/applications
$cellsApi = new CellsApi($CellsCloudClientId , $CellsCloudClientSecret );
$assemblyTestXlsx = "assemblytest.xlsx";
$book1Xlsx = "Book1.xlsx";
$format = "csv";
$objectType = "listobject";
$mapFiles = array ();
$mapFiles[$assemblyTestXlsx] = "TestData/".$assemblyTestXlsx;
$mapFiles[$book1Xlsx] ='TestData/'.$book1Xlsx;
$request = new PostExportRequest();
$request->setFile( $mapFiles);
$request->setObjectType( $objectType);
$request->setFormat( $format);
$cellsApi->postExport($request);
Ruby
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'openssl'
require 'bundler'
require 'aspose_cells_cloud'
CellsCloudClientId = "...." # get from https://dashboard.aspose.cloud/#/applications
CellsCloudClientSecret = "...." # get from https://dashboard.aspose.cloud/#/applications
@instance = AsposeCellsCloud::CellsApi.new(CellsCloudClientId, CellsCloudClientSecret)
assembly_test_xlsx = 'assemblytest.xlsx'
book1_xlsx = 'Book1.xlsx'
format = "csv"
object_type = "listobject"
mapFiles = { }
mapFiles[assembly_test_xlsx]= ::File.open(File.expand_path("TestData/"+assembly_test_xlsx),"r")
mapFiles[book1_xlsx]= ::File.open(File.expand_path("TestData/"+book1_xlsx),"r")
request = AsposeCellsCloud::PostExportRequest.new(:File=>mapFiles,:objectType=>object_type,:format=>format);
@instance.post_export(request);
Node.js
Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os
import sys
from asposecellscloud.apis.cells_api import CellsApi
from asposecellscloud.models import *
from asposecellscloud.requests import *
CellsCloudClientId ='....' # get from https://dashboard.aspose.cloud/#/applications
CellsCloudClientSecret='....' # get from https://dashboard.aspose.cloud/#/applications
api = CellsApi(CellsCloudClientId,CellsCloudClientSecret)
request = PostExportRequest( {'assemblytest.xlsx':'assemblytest.xlsx'},object_type= 'listobject',format= 'png')
api.post_export(request)
Perl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use lib 'lib';
use strict;
use warnings;
use File::Slurp;
use MIME::Base64;
use AsposeCellsCloud::CellsApi;
my $CellsCloudClientId = "...."; # get from https://dashboard.aspose.cloud/#/applications
my $CellsCloudClientSecret = "...."; # get from https://dashboard.aspose.cloud/#/applications
my $config = AsposeCellsCloud::Configuration->new( client_id => $CellsCloudClientId , client_secret => $CellsCloudClientSecret );
my $instance = AsposeCellsCloud::CellsApi->new(AsposeCellsCloud::ApiClient->new( $config));
my $assemblyTestXlsx = 'assemblytest.xlsx';
my $book1Xlsx = 'Book1.xlsx';
my $format = 'csv';
my $objectType = 'listobject';
my $mapFiles = {};
$mapFiles->{$assemblyTestXlsx}= "TestData/".$assemblyTestXlsx ;
$mapFiles->{$book1Xlsx}= "TestData/".$book1Xlsx ;
my $request = AsposeCellsCloud::Request::PostExportRequest->new();
$request->{file} = $mapFiles;
$request->{object_type} = $objectType;
$request->{format} = $format;
$instance->post_export(request=> $request);
Go