Aspose.Cells Cloud SDK for Java

Enables developers to create powerful cloud-based applications for processing Excel (XLS, XLSX), iWork Numbers, OpenOffice, and other spreadsheet formats. Built on the Aspose.Cells Cloud API and licensed under MIT, this SDK provides comprehensive functionality for:
File Operations : Create, read, merge, split, encrypt, and convert spreadsheets.
Format Conversion : Supports XLS, XLSX, XLSB, ODS, CSV, PDF, HTML, and more.
Worksheet Manipulation : Modify cells, rows, columns, charts, pivot tables, and formulas.
Data Extraction & Processing : Auto-filter, conditional formatting, smart markers, and batch operations.

Key Features

Convert

Merge

Protect

SaveAs

Export

Clear

Background

Quick Start Guide

To get started with Aspose.Cells Cloud for Java, follow these steps:
  • Create an account at Aspose for Cloud and obtain your application information.
  • Add the following dependency to your project's POM:
  •     
            <repositories>
                <repository>
                    <id>AsposeJavaAPI</id>
                    <name>Aspose Java API</name>
                    <url>https://repository.aspose.cloud/repo/</url>
                </repository>
            </repositories>
    
            <dependencies>
                <dependency>
                    <groupId>com.aspose</groupId>
                    <artifactId>aspose-cells-cloud</artifactId>
                    <version>25.6.0</version>
                </dependency>
            </dependencies>
        
    
        
            CellsApi cellsApi = new CellsApi(CellsApiUtil.GetClientId(),CellsApiUtil.GetClientSecret());
            String localName = "cloud.png";
            String remoteName = "cloud.png";
            String format = "csv";
            PutConvertWorkbookRequest request = new PutConvertWorkbookRequest();
            request.setFormat(format);
            HashMap fileMap = new HashMap();
            fileMap.put(localName ,CellsApiUtil.GetFileHolder(localName) );
            request.setFile(fileMap);
            File response =  cellsApi.putConvertWorkbook(request);
        
    
Available SDKs