Android SDK for communicating with the Aspose.Cells REST APIs. Create, Edit & Convert Excel files in the Cloud from Android apps.
Android Cloud SDK wraps Aspose.Cells Cloud API. The SDK enhances your Android apps to process & manipulate Microsoft Excel spreadsheets in the cloud, without requiring Microsoft Office®.
Microsoft Excel: XLS, XLSX, XLSB, XLSM, XLT, XLTX, XLTM
OpenOffice: ODS
SpreadsheetML: XML
Text: CSV, TSV, TXT (TabDelimited)
Web: HTML, MHTML
Microsoft Excel: XLS, XLSX, XLSB
OpenOffice: ODS
SpreadsheetML: XML
Text: CSV, TSV, TXT (TabDelimited)
Web: HTML, MHTML
Fixed Layout: PDF, XPS
Images: PNG, JPG, TIFF, SVG
Markdown: MD
Other: DIF
SXC, FODS
SDK includes support of storage operations for better user experience and unification. It gives you an ability to;
First, create an account at Aspose for Cloud and get your application information. Then, 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-android</artifactId>
<version>20.10</version>
</dependency>
</dependencies>
CellsApi cellsApi = new CellsApi(CellsApiUtil.GetClientId(),CellsApiUtil.GetClientSecret())
String name = BOOK1;
String sheetName = SHEET1;
Integer position = 1;
String sheettype ="VB";
String folder = TEMPFOLDER;
cellsApi.uploadFile(folder +"\\" + filename, new File(sourceFolder + filename), null);
WorksheetsResponse response = cellsApi.cellsWorksheetsPutAddNewWorksheet(name, sheetName, position, sheettype, folder,null);
String name = BOOK1;
SaveOptions saveOptions = null;
String newfilename = "newbook.xlsx";
Boolean isAutoFitRows = true;
Boolean isAutoFitColumns = false;
String folder = TEMPFOLDER;
// Upload source file to aspose cloud storage
cellsApi.uploadFile(folder +"\\" + filename, new File(sourceFolder + filename), null);
// Invoke Aspose.Cells Cloud SDK API to convert excel workbook to different format
SaveResponse response = cellsApi.cellsSaveAsPostDocumentSaveAs(name, saveOptions, newfilename, isAutoFitRows, isAutoFitColumns, folder,null);
.NET | Java | PHP | Python | Ruby | Node.js | Swift | Perl | GO |
---|---|---|---|---|---|---|---|---|
GitHub | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub |
NuGet | Maven | Composer | PIP | GEM | NPM | POD | CPAN | GO |
Product Page | Documentation | Live Demo | API Reference | Code Samples | Blog | Free Support | Free Trial