Batchkonvertering Denna REST API anger till batch conversion
av kvalificerade filer
RSET API
Copy
POST http://api.aspose.cloud/v3.0/cells/batch/convert
Begärans parametrar är:
Parameternamn
Typ
Sökväg/Frågesträng/HTTPBody
Beskrivning
batchConvertRequest
kropp
BatchConvertRequest-egenskaper
Namn
Skriv
Beskrivning
Anteckningar
Källmapp
sträng
[valfritt]MatchCondition
Namn
Skriv
Beskrivning
Anteckningar
RegexPattern
sträng
[valfritt]FullMatchvillkor
Du kan använda cURL kommandoradsverktyg för att enkelt komma åt Aspose.Cells webbtjänster. Följande exempel visar hur man ringer till Cloud API med 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"
}
Cloud SDK-familj
Att använda en SDK är det bästa sättet att påskynda utvecklingen. En SDK tar hand om detaljer på låg nivå och låter dig fokusera på dina projektuppgifter. Vänligen kolla inGitHub-förråd för en komplett lista med Aspose.Cells Cloud SDK.
Följande kodexempel visar hur man ringer till Aspose.Cells webbtjänster med olika SDK:er:
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