Cells Cloud SDK for Java\'i kullanarak LISTOBJECT nesnesini GIF formatındaki dosyaya aktarın
API
POST
https://api.aspose.cloud/v3.0/cells/export
LISTOBJECT nesnesini Excel dosyasından GIF dosyasına aktarmak karmaşık bir iştir. LISTOBJECT'i GIF formatına aktarma geçişleri Java SDK'mız tarafından gerçekleştirilir ve kaynak LISTOBJECT e-tablosunun ana yapısal ve mantıksal içeriği korunur. Java kitaplığımız, LISTOBJECT nesnelerini çevrimiçi olarak GIF formatındaki dosyalara aktarmak için profesyonel bir çözümdür. Bu Bulut SDK, Java geliştiriciye güçlü işlevsellik ve mükemmel GIF çıkışı sağlar.
LISTOBJECT\'i elektronik tablodan GIF formatına aktarmak için REST API\'i kullanan Java\'deki kod örneği
// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-java/
import java.io.*;
import java.util.HashMap;
import java.util.List;
import java.util.Base64;
import com.aspose.cloud.cells.api.*;
import com.aspose.cloud.cells.model.*;
public class Export {
public static void main(String[] args) {
String format = "gif";
String objectType = "listobject";
HashMap<String,File> fileMap = new HashMap<String,File>();
fileMap.put("Book1.xlsx" ,new File("C:\Book1.xlsx") );
fileMap.put("myDocument.xlsx" ,new File("C:\myDocument.xlsx") );
try {
LightCellsApi cellsApi = new LightCellsApi(System.getenv("ProductClientId"), System.getenv("ProductClientSecret"),"v3.0","https://api.aspose.cloud");
FilesResult response = cellsApi.postExport(fileMap,objectType, format,null);
List<FileInfo> files = response.getFiles();
String filename = files.get(0).getFilename();
String fileContent = files.get(0).getFileContent();
byte[] data = Base64.getDecoder().decode(fileContent);
OutputStream outputStream = new FileOutputStream(filename);
outputStream.write(data,0,data.length);
outputStream.close();
}catch(Exception exception )
{
System.out.print(exception);
}
}
}
Nesneleri Excel LISTOBJECT\'ten GIF\'e aktarmak için Cells Cloud SDK for Java nasıl kullanılır?
- Şu adreste bir hesap kaydedin:Gösterge Paneli ücretsiz almak için API kota ve yetkilendirme ayrıntılarını
- Cells API'i Müşteri Kimliğiniz, Müşteri Sırrınız, Temel URL'niz ve API sürümünüzle başlatın.
- Ortaya çıkan akışı almak için `postExport` yöntemini kullanın.
sistem gereksinimleri
- Maven 2.2.0 veya daha yenisi
- Java(TM) SE Çalışma Zamanı Ortamı