Skip to content

Commit 5f3021e

Browse files
committed
Update Readme.
1 parent 4cbdbc6 commit 5f3021e

File tree

1 file changed

+81
-65
lines changed

1 file changed

+81
-65
lines changed

README.md

Lines changed: 81 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,44 @@
11
![](https://img.shields.io/badge/aspose.cells%20Cloud%20SDK%20for%20Java-v25.6.0-green?style=for-the-badge&logo=java)[![Product Page](https://img.shields.io/badge/Product-0288d1?style=for-the-badge&logo=Google-Chrome&logoColor=white)](https://products.aspose.cloud/cells/java/) [![Documentation](https://img.shields.io/badge/Documentation-388e3c?style=for-the-badge&logo=Hugo&logoColor=white)](https://docs.aspose.cloud/cells/) [![API Ref](https://img.shields.io/badge/Reference-f39c12?style=for-the-badge&logo=html5&logoColor=white)](https://reference.aspose.cloud/cells/) [![Examples](https://img.shields.io/badge/Examples-1565c0?style=for-the-badge&logo=Github&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-java/tree/main/examples) [![Blog](https://img.shields.io/badge/Blog-d32f2f?style=for-the-badge&logo=WordPress&logoColor=white)](https://blog.aspose.cloud/categories/aspose.cells-cloud-product-family/) [![Support](https://img.shields.io/badge/Support-7b1fa2?style=for-the-badge&logo=Discourse&logoColor=white)](https://forum.aspose.cloud/c/cells/7) [![License](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-java?style=for-the-badge&logo=rocket&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-java/blob/master/LICENSE)
22

3-
Aspose.Cells Cloud for Go enables you to handle various aspects of Excel files, including cell data, styles, formulas, charts, pivot tables, data validation, comments, drawing objects, images, hyperlinks, and so on. Additionally, it supports operations such as splitting, merging, repairing, and converting to other compatible file formats.
3+
Aspose.Cells Cloud SDK for Java enables you to handle various aspects of Excel files, including cell data, styles, formulas, charts, pivot tables, data validation, comments, drawing objects, images, hyperlinks, and so on. Additionally, it supports operations such as splitting, merging, repairing, and converting to other compatible file formats.
44

5-
# Go package for Aspose.Cells Cloud
6-
7-
Enhance your Go applications with the [Aspose.Cells Cloud](https://products.aspose.cloud/cells/go) , enabling seamless integration with [Excel, ODS, CSV, Json and other spreadsheet document formats](https://docs.aspose.cloud/cells/supported-file-formats/). With its powerful APIs, developers can effortlessly read, convert, create, edit, and manipulate the contents of Excel documents without the need for any office software installed on the machine
8-
9-
## Manipulate Excel and other spreadsheet files in the Cloud
5+
## Quick Start Guide
106

11-
- File Manipulation: Users can upload, download, delete, and manage Excel files stored in the cloud.
12-
- Formatting: Supports formatting of cells, fonts, colors, and alignment modes in Excel files to cater to users' specific requirements.
13-
- Data Processing: Powerful functions for data processing including reading, writing, modifying cell data, performing formula calculations, and formatting data.
14-
- Formula Calculation: Built-in formula engine handles complex formula calculations in Excel and returns accurate results.
15-
- Chart Manipulation: Users can create, edit, and delete charts from Excel files for data analysis and visualization needs.
16-
- Table Processing: Offers robust processing capabilities for various form operations such as creation, editing, formatting, and conversion, meeting diverse form processing needs.
17-
- Data Verification: Includes data verification function to set cell data type, range, uniqueness, ensuring data accuracy and integrity.
18-
- Batch Processing: Supports batch processing of multiple Excel documents, such as batch format conversion, data extraction, and style application..
19-
- Import/Export: Facilitates importing data from various sources into spreadsheets and exporting spreadsheet data to other formats.
20-
- Security Management: Offers a range of security features like data encryption, access control, and permission management to safeguard the security and integrity of spreadsheet data.
7+
To get started with Aspose.Cells Cloud for Java, follow these steps:
218

9+
1. Create an account at [Aspose for Cloud](https://dashboard.aspose.cloud/#/apps) and obtain your application information.
10+
2. Add the following dependency to your project's POM:
2211

23-
## Feature & Enhancements in Version v25.6.0
12+
```
13+
<repositories>
14+
<repository>
15+
<id>AsposeJavaAPI</id>
16+
<name>Aspose Java API</name>
17+
<url>https://repository.aspose.cloud/repo/</url>
18+
</repository>
19+
</repositories>
2420
25-
Full list of issues covering all changes in this release:
21+
<dependencies>
22+
<dependency>
23+
<groupId>com.aspose</groupId>
24+
<artifactId>aspose-cells-cloud</artifactId>
25+
<version>25.6.0</version>
26+
</dependency>
27+
</dependencies>
28+
```
2629

27-
|**Summary**| **Category** |
28-
| :- |:-------------|
29-
| Optimize the upload file API | Improvement |
30-
| Support delete blank rows, columns, and worksheets. | New Feature |
31-
| Optimize search context for remote spreadsheet features by splitting them into independent APIs, each dedicated to a specific operational area. | New Feature |
32-
| Optimize search broken links for remote spreadsheet features by splitting them into independent APIs, each dedicated to a specific operational area. | New Feature |
33-
| Optimize replace context for remote spreadsheet features by splitting them into independent APIs, each dedicated to a specific operational area. | New Feature |
30+
```Java
31+
CellsApi cellsApi = new CellsApi(CellsApiUtil.GetClientId(),CellsApiUtil.GetClientSecret());
32+
String localName = "cloud.png";
33+
String remoteName = "cloud.png";
34+
String format = "csv";
35+
PutConvertWorkbookRequest request = new PutConvertWorkbookRequest();
36+
request.setFormat(format);
37+
HashMap<String,File> fileMap = new HashMap<String,File>();
38+
fileMap.put(localName ,CellsApiUtil.GetFileHolder(localName) );
39+
request.setFile(fileMap);
40+
File response = cellsApi.putConvertWorkbook(request);
41+
```
3442

3543
## Support file format
3644

@@ -46,12 +54,10 @@ Full list of issues covering all changes in this release:
4654
|[XLAM](https://docs.fileformat.com/spreadsheet/xlam/)|An Excel Macro-Enabled Add-In file that's used to add new functions to Excel.| |&radic;|
4755
|[CSV](https://docs.fileformat.com/spreadsheet/csv/)|CSV (Comma Separated Value) file.|&radic;|&radic;|
4856
|[TSV](https://docs.fileformat.com/spreadsheet/tsv/)|TSV (Tab-separated values) file.|&radic;|&radic;|
49-
|TabDelimited|Tab-delimited text file, same with TSV file.|&radic;|&radic;|
5057
|[TXT](https://docs.fileformat.com/word-processing/txt/)|Delimited plain text file.|&radic;|&radic;|
5158
|[HTML](https://docs.fileformat.com/web/html/)|HTML format.|&radic;|&radic;|
5259
|[MHTML](https://docs.fileformat.com/web/mhtml/)|MHTML file.|&radic;|&radic;|
5360
|[ODS](https://docs.fileformat.com/spreadsheet/ods/)|ODS (OpenDocument Spreadsheet).|&radic;|&radic;|
54-
|SpreadsheetML|Excel 2003 XML file.|&radic;|&radic;|
5561
|[Numbers](https://docs.fileformat.com/spreadsheet/numbers/)|The document is created by Apple's "Numbers" application which forms part of Apple's iWork office suite, a set of applications which run on the Mac OS X and iOS operating systems.|&radic;||
5662
|[JSON](https://docs.fileformat.com/web/json/)|JavaScript Object Notation|&radic;|&radic;|
5763
|[DIF](https://docs.fileformat.com/spreadsheet/dif/)|Data Interchange Format.| |&radic;|
@@ -69,51 +75,61 @@ Full list of issues covering all changes in this release:
6975
|[FODS](https://docs.fileformat.com/spreadsheet/fods/)|This is an Open Document format stored as flat XML.|&radic;|&radic;|
7076
|[DOCX](https://docs.fileformat.com/word-processing/docx/)|A well-known format for Microsoft Word documents that is a combination of XML and binary files.||&radic;|
7177
|[PPTX](https://docs.fileformat.com/presentation/pptx/)|The PPTX format is based on the Microsoft PowerPoint open XML presentation file format.||&radic;|
78+
|[OTS](https://docs.fileformat.com/spreadsheet/ots/)|OTS (OpenDocument Spreadsheet).|&radic;|&radic;|
79+
|[XML](https://docs.fileformat.com/web/xml/)|XML file.|&radic;|&radic;|
80+
|[HTM](https://docs.fileformat.com/web/htm/)|HTM file.|&radic;|&radic;|
81+
|[TIF](https://docs.fileformat.com/image/tiff/)|Tagged Image File Format| |&radic;|
82+
|[WMF](https://docs.fileformat.com/image/wmf/)|WMF Image Format| |&radic;|
83+
|[PCL](https://docs.fileformat.com/page-description-language/pcl/)|Printer Command Language Format| |&radic;|
84+
|[AZW3](https://docs.fileformat.com/ebook/azw3/)|AZ3/KF8 File Format| |&radic;|
85+
|[EPUB](https://docs.fileformat.com/ebook/epub/)|EPUB File Format| |&radic;|
86+
|[DBF](https://docs.fileformat.com/ebook/epub/)|DBF File Format| |&radic;|
87+
|[EPUB](https://docs.fileformat.com/database/dbf/)|database file| |&radic;|
88+
|[XHTML](https://docs.fileformat.com/web/xhtml/)|XHTML File Format| |&radic;|
7289

73-
## Quick Start Guide
90+
## Manipulate Excel and other spreadsheet files in the Cloud
7491

75-
To get started with Aspose.Cells Cloud for Java, follow these steps:
92+
- File Manipulation: Users can upload, download, delete, and manage Excel files stored in the cloud.
93+
- Formatting: Supports formatting of cells, fonts, colors, and alignment modes in Excel files to cater to users' specific requirements.
94+
- Data Processing: Powerful functions for data processing including reading, writing, modifying cell data, performing formula calculations, and formatting data.
95+
- Formula Calculation: Built-in formula engine handles complex formula calculations in Excel and returns accurate results.
96+
- Chart Manipulation: Users can create, edit, and delete charts from Excel files for data analysis and visualization needs.
97+
- Table Processing: Offers robust processing capabilities for various form operations such as creation, editing, formatting, and conversion, meeting diverse form processing needs.
98+
- Data Verification: Includes data verification function to set cell data type, range, uniqueness, ensuring data accuracy and integrity.
99+
- Batch Processing: Supports batch processing of multiple Excel documents, such as batch format conversion, data extraction, and style application..
100+
- Import/Export: Facilitates importing data from various sources into spreadsheets and exporting spreadsheet data to other formats.
101+
- Security Management: Offers a range of security features like data encryption, access control, and permission management to safeguard the security and integrity of spreadsheet data.
76102

77-
1. Create an account at [Aspose for Cloud](https://dashboard.aspose.cloud/#/apps) and obtain your application information.
78-
2. Add the following dependency to your project's POM:
103+
## Feature & Enhancements in Version v25.6.0
79104

80-
```
81-
<repositories>
82-
<repository>
83-
<id>AsposeJavaAPI</id>
84-
<name>Aspose Java API</name>
85-
<url>https://repository.aspose.cloud/repo/</url>
86-
</repository>
87-
</repositories>
105+
Full list of issues covering all changes in this release:
88106

89-
<dependencies>
90-
<dependency>
91-
<groupId>com.aspose</groupId>
92-
<artifactId>aspose-cells-cloud</artifactId>
93-
<version>25.6.0</version>
94-
</dependency>
95-
</dependencies>
96-
```
107+
|**Summary**| **Category** |
108+
| :- |:-------------|
109+
| Optimize the upload file API | Improvement |
110+
| Support delete blank rows, columns, and worksheets. | New Feature |
111+
| Optimize search context for remote spreadsheet features by splitting them into independent APIs, each dedicated to a specific operational area. | New Feature |
112+
| Optimize search broken links for remote spreadsheet features by splitting them into independent APIs, each dedicated to a specific operational area. | New Feature |
113+
| Optimize replace context for remote spreadsheet features by splitting them into independent APIs, each dedicated to a specific operational area. | New Feature |
97114

98-
```Java
99-
CellsApi cellsApi = new CellsApi(CellsApiUtil.GetClientId(),CellsApiUtil.GetClientSecret());
100-
String localName = "cloud.png";
101-
String remoteName = "cloud.png";
102-
String format = "csv";
103-
PutConvertWorkbookRequest request = new PutConvertWorkbookRequest();
104-
request.setFormat(format);
105-
HashMap<String,File> fileMap = new HashMap<String,File>();
106-
fileMap.put(localName ,CellsApiUtil.GetFileHolder(localName) );
107-
request.setFile(fileMap);
108-
File response = cellsApi.putConvertWorkbook(request);
109-
```
115+
## Available SDKs
116+
117+
The Aspose.Cells Cloud SDK is available in multiple popular programming languages, enabling developers to integrate spreadsheet processing capabilities across various development environments.
118+
119+
[![Go](https://img.shields.io/badge/Go-00ADD8.svg?style=for-the-badge&logo=go&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-go) [![Go](https://img.shields.io/badge/Go-asposecellscloud-%2300ADD8?logo=go&style=for-the-badge)](https://pkg.go.dev/github.com/aspose-cells-cloud/aspose-cells-cloud-go/v25)
120+
121+
[![Java](https://img.shields.io/badge/Java-red?logo=openjdk&style=for-the-badge&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-java) [![Java](https://img.shields.io/badge/Maven-Aspose.Cells.Cloud.pom.xml-red?logo=apache-maven&style=for-the-badge)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-java/blob/master/Aspose.Cells.Cloud.pom.xml)
122+
123+
[![C#](https://img.shields.io/badge/.NET-%23512BD4?style=for-the-badge&logo=dotnet&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet) [![.NET](https://img.shields.io/badge/NuGet-Aspose.Cells--Cloud-%23512BD4?logo=nuget&style=for-the-badge)](https://www.nuget.org/packages/Aspose.cells-Cloud/#readme-body-tab)
124+
125+
[![Node.js](https://img.shields.io/badge/Node.js-43853D.svg?style=for-the-badge&logo=node.js&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-node) [![Node.js](https://img.shields.io/badge/npm-asposecellscloud-orange?logo=npm&style=for-the-badge)](https://www.npmjs.com/package/asposecellscloud)
126+
127+
[![Perl](https://img.shields.io/badge/Perl-39457E.svg?style=for-the-badge&logo=perl&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-perl) [![Perl](https://img.shields.io/badge/CPAN-AsposeCellsCloud--CellsApi-blue?logo=perl&style=for-the-badge)](https://metacpan.org/dist/AsposeCellsCloud-CellsApi)
128+
129+
[![PHP](https://img.shields.io/badge/PHP-777BB4.svg?style=for-the-badge&logo=php&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-php) [![PHP](https://img.shields.io/badge/Composer-aspose/cells--sdk--php-8892BF?logo=php&style=for-the-badge)](https://packagist.org/packages/aspose/cells-sdk-php)
110130

111-
## Aspose.Cells Cloud in Popular Languages
131+
[![Python](https://img.shields.io/badge/Python-14354C.svg?style=for-the-badge&logo=python&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-python) [![Python](https://img.shields.io/badge/pip-asposecellscloud-blue?logo=pypi&style=for-the-badge)](https://pypi.org/project/asposecellscloud/)
112132

113-
| .NET | PHP | Python | Ruby | Node.js | Android | Swift | Perl | GO |
114-
|---|---|---|---|---|---|---|---|---|
115-
| [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-php) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-python) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-node) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-android) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-swift) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-perl) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-go) |
116-
| [NuGet](https://www.nuget.org/packages/Aspose.Cells-Cloud/) | [Composer](https://packagist.org/packages/aspose/cells-sdk-php) | [PIP](https://pypi.org/project/asposecellscloud/) | [GEM](https://rubygems.org/gems/aspose_cells_cloud) | [NPM](https://www.npmjs.com/package/asposecellscloud) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-cells-cloud-android) | [POD](https://cocoapods.org/pods/AsposeCellsCloud) | [CPAN](https://metacpan.org/release/AsposeCellsCloud-CellsApi) | [GO](https://pkg.go.dev/github.com/aspose-cells-cloud/aspose-cells-cloud-go/v20?tab=overview) |
133+
[![Ruby](https://img.shields.io/badge/Ruby-CC342D.svg?style=for-the-badge&logo=ruby&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby) [![Ruby](https://img.shields.io/badge/Gem-aspose__cells__cloud-red?logo=ruby&style=for-the-badge)](https://rubygems.org/gems/aspose_cells_cloud)
117134

118-
[Product Page](https://products.aspose.cloud/cells/java) | [Documentation](https://docs.aspose.cloud/cells/) | [Live Demo](https://products.aspose.app/cells/family) | [API Reference](https://apireference.aspose.cloud/cells/) | [Code Samples](https://github.com/aspose-cells-cloud/aspose-cells-cloud-java) | [Blog](https://blog.aspose.cloud/category/cells/) | [Free Support](https://forum.aspose.cloud/c/cells) | [Free Trial](https://dashboard.aspose.cloud/#/apps)
119135
## [Release history version](HistoryVersions.md)

0 commit comments

Comments
 (0)