Экспортировать список объектов Вы можете экспортировать форматы:XLS , XLSX , XLSB , CSV , ТСВ , XLSM , ОРВ , ТЕКСТ , PDF , ОТС , XPS , ДИФ , PNG , JPEG , BMP , SVG , TIFF , EMF , ЧИСЛА , FODS ..
API
Тип
Описание
Ссылка Swagger
/ячейки/экспорт
ПОЧТА
Экспорт Excel из содержимого запроса в какой-либо формат
ПостЭкспорт
TheСпецификация OpenAPI определяет общедоступный программный интерфейс и позволяет выполнять REST-взаимодействия непосредственно из веб-браузера.
Вы можете использоватьcURL Инструмент командной строки для простого доступа к веб-сервисам Aspose.Cells. В следующем примере показано, как совершать вызовы в Cloud API с помощью 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--------"
}]
}
Использование SDK — лучший способ ускорить разработку. SDK заботится о низкоуровневых деталях и позволяет вам сосредоточиться на задачах вашего проекта. Пожалуйста, ознакомьтесь сРепозиторий GitHub для полного списка Aspose.Cells Cloud SDK.
В следующих примерах кода показано, как выполнять вызовы веб-служб Aspose.Cells с использованием различных 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