Depolama kullanmadan Veri İçe Aktarma Excel veri içe aktarımı karmaşık bir işlemdir. Karmaşıklığa birçok faktör katkıda bulunur ve bu nedenle dışa aktarma işlemi sırasında dikkate alınmalıdır. Çeşitli formatları ve veri türlerini dosyaya hassas bir profesyonel kalitede içe aktarma yeteneği, Aspose.Cells Cloud’un en önemli özelliğidir.
Bu REST API, Excel dosyasında import data
‘i göstermektedir.
RSETAPI
Copy
POST https://api.aspose.cloud/v3.0/cells/import
İstek parametreleri şunlardır:
Parametre Adı
Tip
Yol/Sorgu Dizesi/HTTPGövdesi
Tanım
dosya
dosya
formVerileri
Yüklenecek dosya
İçe Aktarma Seçeneği
İçe Aktarma Seçenekleri
HTTPGövdesi
IntArray/DoubleArray/StringArray/İki BoyutIntArray/İki BoyutÇift Dizi/İki BoyutStringArray/Toplu Veri/CSVData/Resim
Veri içe aktarma seçenekleri parametreleri tarif edilmiştirreferans bağlantısı .
TheOpenAPI Spesifikasyonu herkese açık bir programlama arayüzü tanımlar ve REST etkileşimlerini doğrudan bir web tarayıcısından gerçekleştirmenize olanak tanır.
cURL komut satırı aracını kullanarak Aspose.Cells web servislerine kolayca erişebilirsiniz. Aşağıdaki örnek, cURL ile Cloud API’e nasıl çağrı yapılacağını göstermektedir.
Request
Copy
curl -v "http://api.aspose.cloud/v3.0/cells/import" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: Bearer <jwt token>" \
-F 'xxxxx1=@xxxx1.xlsx' \
-F 'xxxxx2=@xxxx2.xlsx' \
-F 'ImportOption={\"Data\":[1,2,4],\"DestinationWorksheet\":\"Sheet1\",\"FirstRow\":1,\"FirstColumn\":2,\"IsVertical\":true,\"IsInsert\":true,\"importDataType\":\"IntArray\"}'
Response
Copy {
"Files" :
[
{
"Filename" :"xxxxx" ,
"FileSize" :274022,
"FileContent" :"-----Base64String--------"
} ,
{
"Filename" :"xxxxx" ,
"FileSize" :274022,
"FileContent" :"-----Base64String--------"
}
]
}
Bulut SDK Ailesi
Bir SDK kullanmak, geliştirmeyi hızlandırmanın en iyi yoludur. Bir SDK, düşük seviyeli ayrıntılarla ilgilenir ve proje görevlerinize odaklanmanızı sağlar. Lütfen şuraya göz atın:GitHub deposu Aspose.Cells Bulut SDK’larının tam listesi için.
Aşağıdaki kod örnekleri çeşitli SDK’ları kullanarak Aspose.Cells web servislerine nasıl çağrı yapılacağını göstermektedir:
C#
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
namespace Aspose.Cells.Cloud.SDK.Tests.Api.Example
{
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Aspose.Cells.Cloud.SDK.Request;
using System.Collections.Generic;
using Aspose.Cells.Cloud.SDK.Api;
using System;
using System.IO;
[TestClass]
public class CellsApiExample
{
string CellsCloudClientId ="....";//get from https://dashboard.aspose.cloud/#/applications
string CellsCloudClientSecret="...";//get from https://dashboard.aspose.cloud/#/applications
private readonly string remoteFolder = "TestData/In";
string localName = "Book1.xlsx";
string remoteName = "remote_book1.xlsx";
string localPath = "D:/TestData/CellsCloud";
[TestCategory("Cells")]
[TestMethod]
public void Example()
{
UploadFileRequest uploadFileRequest = new UploadFileRequest();
FileInfo fileInfo = new FileInfo(localPath + "/" + localName);
uploadFileRequest.path = remoteFolder + "/" + remoteName;
uploadFileRequest.storageName = "";
uploadFileRequest.UploadFiles = new Dictionary<string, Stream>() { { localName, File.OpenRead(localPath +"/"+ localName) } };
cellsApi.UploadFile(uploadFileRequest);
var importOptionData = new List<int?>()
{
1,
2,
3,
4
};
var importOption = new ImportIntArrayOption()
{
DestinationWorksheet = "Sheet1",
FirstColumn = 1,
FirstRow = 3,
ImportDataType = "IntArray",
IsInsert = true,
IsVertical = true,
Data = importOptionData
};
var request = new PostImportDataRequest(
name: remoteName,
importOption: importOption,
folder: remoteFolder,
storageName: ""
);
cellsApi.PostImportData(request);
}
}
}
Java
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
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 remoteName = "Book1.xlsx";
UploadFileRequest uploadFileRequest = new UploadFileRequest();
uploadFileRequest.setPath( remoteFolder + "/" + remoteName );
uploadFileRequest.setStorageName( "");
HashMap<String,File> files = new HashMap<String,File>();
files.put( localName , new File(localName ));
uploadFileRequest.setUploadFiles(files);
api.uploadFile(uploadFileRequest);
PostImportDataRequest request = new PostImportDataRequest();
ImportIntArrayOption importOption = new ImportIntArrayOption();
importOption.setDestinationWorksheet("Sheet1");
importOption.setFirstColumn(1);
importOption.setFirstRow(3);
importOption.setImportDataType("IntArray");
importOption.setIsInsert(true);
importOption.setIsVertical(true);
ArrayList<Integer> importOptionData = new ArrayList<Integer>();
importOption.setData(importOptionData);
request.setImportOption(importOption);
request.setName(remoteName);
request.setFolder(remoteFolder);
request.setStorageName("");
this.api.postImportData(request);
} catch (ApiException e) {
e.printStackTrace();
}catch (IOException e) {
e.printStackTrace();
}
}
}
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\PostImportDataRequest;
$CellsCloudClientId = "...." ; # get from https://dashboard.aspose.cloud/#/applications
$CellsCloudClientSecret = "...."; # get from https://dashboard.aspose.cloud/#/applications
$cellsApi = new CellsApi($CellsCloudClientId , $CellsCloudClientSecret );
$remoteFolder = "TestData/In";
$localName = "Book1.xlsx";
$remoteName = "Book1.xlsx";
$importOptionData = array (
1,
2,
3,
4
);
$importOption = new \Aspose\Cells\Cloud\Model\ImportIntArrayOption();
$importOption->setDestinationWorksheet("Sheet1" );
$importOption->setFirstColumn(1 );
$importOption->setFirstRow(3 );
$importOption->setImportDataType("IntArray" );
$importOption->setIsInsert('true' );
$importOption->setIsVertical('true' );
$importOption->setData($importOptionData );
$request = new PostImportDataRequest();
$request->setName( $remoteName);
$request->setImportOption( $importOption);
$request->setFolder( $remoteFolder);
$request->setStorageName( "");
$cellsApi->postImportData($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)
remote_folder = 'TestData/In'
local_name = 'Book1.xlsx'
remote_name = 'Book1.xlsx'
mapFiles = { }
mapFiles[local_name] = ::File.open(File.expand_path("TestData/"+local_name),"r")
uploadrequest = AsposeCellsCloud::UploadFileRequest.new( { :UploadFiles=>mapFiles,:path=>remote_folder })
@instance.upload_file(uploadrequest)
importOptionData = [
1,
2,
3,
4
];
importOption = AsposeCellsCloud::ImportIntArrayOption.new(:DestinationWorksheet=>'Sheet1' ,:FirstColumn=>1 ,:FirstRow=>3 ,:ImportDataType=>'IntArray' ,:IsInsert=>true ,:IsVertical=>true ,:Data=>importOptionData );
request = AsposeCellsCloud::PostImportDataRequest.new(:name=>remote_name,:importOption=>importOption,:folder=>remote_folder,:storageName=>'');
@instance.post_import_data(request);
Node.js
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 { CellsApi,ImportIntArrayOption,PostImportDataRequest,UploadFileRequest } from "asposecellscloud";
var fs = require('fs');
var path = require('path');
var process = require('process');
const _ = require('asposecellscloud');
const CellsCloudClientId ="....";//get from https://dashboard.aspose.cloud/#/applications
const CellsCloudClientSecret="...";//get from https://dashboard.aspose.cloud/#/applications
const cellsApi = new CellsApi(CellsCloudClientId, CellsCloudClientSecret);
var remoteFolder = "TestData/In"
var localPath = "TestData/CellsCloud/"
var localName = "Book1.xlsx"
var remoteName = "Book1.xlsx"
describe('example', function(){
it("should call successfully" , function(){
var localNameRequest = new UploadFileRequest();
localNameRequest.uploadFiles ={localName:fs.createReadStream(localPath + localName)};
localNameRequest.path = remoteFolder + "/" + remoteName ;
localNameRequest.storageName ="";
cellsApi.uploadFile(localNameRequest );
var importOptionData = new Array<number>();importOptionData.push(1);
importOptionData.push(2);
importOptionData.push(3);
importOptionData.push(4);
var importOption = new ImportIntArrayOption();
importOption.destinationWorksheet = "Sheet1" ;
importOption.firstColumn = 1 ;
importOption.firstRow = 3 ;
importOption.importDataType = "IntArray" ;
importOption.isInsert = true ;
importOption.isVertical = true ;
importOption.data = importOptionData ;
var request = new PostImportDataRequest();
request.name = remoteName;
request.importOption = importOption;
request.folder = remoteFolder;
request.storageName = "";
return cellsApi.postImportData(request)
});
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)
importOption = ImportIntArrayOption(destination_worksheet= 'Sheet1' ,first_column= 1 ,first_row= 3 ,import_data_type= 'IntArray' ,is_insert= True ,is_vertical= True ,data= [1,2,3,4] )
request = PostImportDataRequest( 'Book1.xlsx',import_option= importOption,folder= 'PythonTest',storage_name= '')
api.post_import_data(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 $remoteFolder = 'TestData/In';
my $localName = 'Book1.xlsx';
my $remoteName = 'Book1.xlsx';
my $upload_file_request = AsposeCellsCloud::Request::UploadFileRequest->new( 'UploadFiles'=>{ $localName => $localName } ,'path'=>$remoteFolder . '/' . $remoteName );
my @import_option_data = [];push (@import_option_data ,1 );
push (@import_option_data ,2 );
push (@import_option_data ,3 );
push (@import_option_data ,4 );
my $import_option = AsposeCellsCloud::Object::ImportIntArrayOption->new();
$import_option->{destination_worksheet} = 'Sheet1' ;
$import_option->{first_column} = 1 ;
$import_option->{first_row} = 3 ;
$import_option->{import_data_type} = 'IntArray' ;
$import_option->{is_insert} = 'true' ;
$import_option->{is_vertical} = 'true' ;
$import_option->{data} = []; push ( @{$import_option->{data}}, 1 );
push ( @{$import_option->{data}}, 2 );
push ( @{$import_option->{data}}, 3 );
push ( @{$import_option->{data}}, 4 ); ;
my $request = AsposeCellsCloud::Request::PostImportDataRequest->new();
$request->{name} = $remoteName;
$request->{import_option} = $import_option;
$request->{folder} = $remoteFolder;
$request->{storage_name} = '';
$instance->post_import_data(request=> $request);
Go
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
package main
import (
. "github.com/aspose-cells-cloud/aspose-cells-cloud-go/v25"
)
func main() {
CellsCloudClientId := "...." // get from https://dashboard.aspose.cloud/#/applications
CellsCloudClientSecret := "...." // get from https://dashboard.aspose.cloud/#/applications
instance := NewCellsApiService(CellsCloudClientId, CellsCloudClientSecret)
remoteFolder := "TestData/In"
localName := "Book1.xlsx"
remoteName := "Book1.xlsx"
localNameRequest := new(UploadFileRequest)
localNameRequest.UploadFiles = make(map[string]string)
localNameRequest.UploadFiles[localName] = localName
localNameRequest.Path = remoteFolder + "/" + remoteName
localNameRequest.StorageName = ""
instance.UploadFile(localNameRequest)
var importOptionData = []int64{int64(1),
int64(2),
int64(3),
int64(4)}
var importOption = new(ImportIntArrayOption)
importOption.DestinationWorksheet = "Sheet1"
importOption.FirstColumn = int64(1)
importOption.FirstRow = int64(3)
importOption.ImportDataType = "IntArray"
importOption.IsInsert = true
importOption.IsVertical = true
importOption.Data = importOptionData
request := new(PostImportDataRequest)
request.Name = remoteName
request.ImportOption = importOption
request.Folder = remoteFolder
request.StorageName = ""
_, httpResponse, err := instance.PostImportData(request)
if err != nil {
println(err.Error())
} else if httpResponse.StatusCode < 200 || httpResponse.StatusCode > 299 {
println("Fail")
}
}