Пакетное преобразование Этот REST API указывает на batch conversion
подходящих файлов.
РСЕТ API
Copy
POST http://api.aspose.cloud/v3.0/cells/batch/convert
Параметры запроса:
Имя параметра
Тип
Путь/строка запроса/HTTPBody
Описание
Пакетная конвертация запроса
тело
Свойства пакетного запросаConvertRequest
Имя
Тип
Описание
Примечания
Исходная папка
строка
[необязательно]Условие совпадения
Имя
Тип
Описание
Примечания
РегексПаттерн
строка
[необязательно]FullMatchConditions
Вы можете использовать инструмент командной строки cURL для легкого доступа к веб-службам Aspose.Cells. В следующем примере показано, как позвонить на Cloud API с помощью cURL.
Request
Copy
curl -v "http://api.aspose.cloud/v3.0/cells/batch/convert" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: Bearer <jwt token>"
-D "{\"SourceFolder\":\"CellsTests\",\"OutFolder\":\"Output\",\"MatchCondition\":{\"RegexPattern\":\"(^Book)(.+)(xlsx $ )\"},\"Format\":\"pdf\",\"SaveOptions\":{\"SaveFormat\":\"pdf\",\"CalculateFormula\":true,\"EnableHTTPCompression\":true,\"OnePagePerSheet\":true,\"CreateDirectory\":false,\"Compliance\":\"None\"}}"
Response
Copy {
"Code" : 200,
"Status" : "OK"
}
Семейство облачных SDK
Использование SDK — лучший способ ускорить разработку. SDK заботится о деталях низкого уровня и позволяет вам сосредоточиться на задачах проекта. Пожалуйста, ознакомьтесь сРепозиторий GitHub для получения полного списка Aspose.Cells Cloud SDK.
Следующие примеры кода демонстрируют, как выполнять вызовы веб-служб Aspose.Cells с использованием различных SDK:
C#
This file contains 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
// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/
namespace Aspose.Cells.Cloud.SDK.Example
{
using Aspose.Cells.Cloud.SDK.Api;
using Aspose.Cells.Cloud.SDK.Model;
using Aspose.Cells.Cloud.SDK.Request;
using System;
public partial class CellsApiExample
{
public void PostBatchConvertExample()
{
CellsApi cellsApi = new CellsApi(Environment.GetEnvironmentVariable("CellsCloudTestClientId"), Environment.GetEnvironmentVariable("CellsCloudTestClientSecret"));
BatchConvertRequest batchConvertRequest = new BatchConvertRequest { SourceFolder = "TestData/In", Format="pdf", OutFolder = "TestData/out", MatchCondition = new MatchConditionRequest { RegexPattern = "(^Book)(.+)(xlsx$)" } } ;
PostBatchConvertRequest request = new PostBatchConvertRequest(batchConvertRequest);
cellsApi.PostBatchConvert(request);
}
}
}
Java
This file contains 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
package com.aspose.cloud.cells.api;
import com.aspose.cloud.cells.client.*;
import com.aspose.cloud.cells.model.*;
import com.aspose.cloud.cells.request.*;
import java.io.IOException;
import org.junit.Test;
import java.util.ArrayList;
import java.util.List;
import java.io.File;
import java.util.HashMap;
public class Example {
private CellsApi api;
public Example(){
try {
api = new CellsApi(
System.getenv("CellsCloudClientId"),
System.getenv("CellsCloudClientSecret"),
"v3.0",
System.getenv("CellsCloudApiBaseUrl")
);
} catch (ApiException e) {
e.printStackTrace();
}
}
public void Run(){
try{
String remoteFolder = "TestData/In";
String localName = "Book1.xlsx";
String localName2 = "myDocument.xlsx";
String remoteName = "Book1.xlsx";
BatchConvertRequest batchConvertRequest = new BatchConvertRequest();
batchConvertRequest.setFormat ("pdf") ;
batchConvertRequest.setSourceFolder(remoteFolder);
MatchConditionRequest matchConditionRequest = new MatchConditionRequest();
List<String> sheetnameList=new ArrayList<>();
sheetnameList.add(localName);
sheetnameList.add(localName2);
matchConditionRequest.setFullMatchConditions(sheetnameList);
batchConvertRequest.setMatchCondition(matchConditionRequest);
PostBatchConvertRequest request = new PostBatchConvertRequest();
request.setBatchConvertRequest(batchConvertRequest);
File response = api.postBatchConvert(request);
} catch (ApiException e) {
e.printStackTrace();
}catch (IOException e) {
e.printStackTrace();
}
}
}
PHP
Ruby
Python
Node.js
Android
Swift
Perl
Go